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

@ -974,8 +974,8 @@ namespace Data.Migrations.MySql
.ValueGeneratedOnAdd()
.HasColumnType("int");
b.Property<bool>("Active")
.HasColumnType("tinyint(1)");
b.Property<DateTime>("CreatedDateTime")
.HasColumnType("datetime(6)");
b.Property<int?>("IPv4Address")
.HasColumnType("int");
@ -986,6 +986,9 @@ namespace Data.Migrations.MySql
b.Property<int>("PenaltyId")
.HasColumnType("int");
b.Property<DateTime?>("UpdatedDateTime")
.HasColumnType("datetime(6)");
b.HasKey("PenaltyIdentifierId");
b.HasIndex("IPv4Address");