Patched DateOnly columns
This commit is contained in:
committed by
Chris
parent
416d668294
commit
ba0a5f1b6e
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user