1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add create/update times to penalty identifiers

This commit is contained in:
RaidMax
2022-02-23 09:02:01 -06:00
parent ce27d4fe61
commit 13c09f5184
11 changed files with 5086 additions and 8 deletions

View File

@ -972,8 +972,8 @@ namespace Data.Migrations.Sqlite
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<bool>("Active")
.HasColumnType("INTEGER");
b.Property<DateTime>("CreatedDateTime")
.HasColumnType("TEXT");
b.Property<int?>("IPv4Address")
.HasColumnType("INTEGER");
@ -984,6 +984,9 @@ namespace Data.Migrations.Sqlite
b.Property<int>("PenaltyId")
.HasColumnType("INTEGER");
b.Property<DateTime?>("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("PenaltyIdentifierId");
b.HasIndex("IPv4Address");