Add new migration
This commit is contained in:
@ -64,13 +64,24 @@ namespace Hcs.WebApp.Data.Hcs.Migrations
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("FileName")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int?>("LastParseOperationId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime?>("ParsedAt")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<int>("Path")
|
||||
b.Property<string>("Path")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime?>("UploadedAt")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<int>("UploaderId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
Reference in New Issue
Block a user