Add new migration

This commit is contained in:
2025-11-17 17:08:28 +09:00
parent 60cc921a05
commit cabf4ec893
3 changed files with 377 additions and 1 deletions

View File

@ -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");