fix: 门店资质日期字段改为date
This commit is contained in:
@@ -5731,8 +5731,8 @@ namespace TakeoutSaaS.Infrastructure.Migrations
|
||||
.HasColumnType("character varying(100)")
|
||||
.HasComment("证照编号。");
|
||||
|
||||
b.Property<DateTime?>("ExpiresAt")
|
||||
.HasColumnType("timestamp with time zone")
|
||||
b.Property<DateOnly?>("ExpiresAt")
|
||||
.HasColumnType("date")
|
||||
.HasComment("到期日期。");
|
||||
|
||||
b.Property<string>("FileUrl")
|
||||
@@ -5741,8 +5741,8 @@ namespace TakeoutSaaS.Infrastructure.Migrations
|
||||
.HasColumnType("character varying(500)")
|
||||
.HasComment("证照文件 URL。");
|
||||
|
||||
b.Property<DateTime?>("IssuedAt")
|
||||
.HasColumnType("timestamp with time zone")
|
||||
b.Property<DateOnly?>("IssuedAt")
|
||||
.HasColumnType("date")
|
||||
.HasComment("签发日期。");
|
||||
|
||||
b.Property<int>("QualificationType")
|
||||
|
||||
Reference in New Issue
Block a user