added EventType to raid

This commit is contained in:
Sarah Faey 2022-12-03 17:59:29 +01:00
parent de3a6a9f83
commit f0ef990993
7 changed files with 778 additions and 8 deletions

View file

@ -160,6 +160,9 @@ namespace Lieb.Migrations
b.Property<DateTimeOffset>("EndTimeUTC")
.HasColumnType("TEXT");
b.Property<int>("EventType")
.HasColumnType("INTEGER");
b.Property<DateTimeOffset>("FreeForAllTimeUTC")
.HasColumnType("TEXT");
@ -376,6 +379,9 @@ namespace Lieb.Migrations
b.Property<DateTime>("EndTime")
.HasColumnType("TEXT");
b.Property<int>("EventType")
.HasColumnType("INTEGER");
b.Property<DateTime>("FreeForAllTime")
.HasColumnType("TEXT");