Patched DateOnly columns

This commit is contained in:
Christopher Sanden
2026-03-29 14:35:15 +02:00
committed by Chris
parent 416d668294
commit ba0a5f1b6e
8 changed files with 847 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ namespace Example.Data.Migrations.Sqlite
.HasColumnType("INTEGER");
b.Property<DateTime>("Birthdate")
.HasColumnType("TEXT");
.HasColumnType("date");
b.Property<string>("FirstName")
.IsRequired()
@@ -48,7 +48,7 @@ namespace Example.Data.Migrations.Sqlite
.HasColumnType("INTEGER");
b.Property<DateTime>("Published")
.HasColumnType("TEXT");
.HasColumnType("date");
b.Property<string>("Summary")
.IsRequired()