Update migration
This commit is contained in:
@ -25,6 +25,9 @@ namespace Hcs.WebApp.Data.Hcs.Migrations
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Args")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime>("CreatedAt")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
@ -78,11 +81,12 @@ namespace Hcs.WebApp.Data.Hcs.Migrations
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime?>("UploadedAt")
|
||||
b.Property<DateTime>("UploadedAt")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<int>("UploaderId")
|
||||
.HasColumnType("int");
|
||||
b.Property<string>("UploaderId")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user