[DB] Update migrations for datetime update
This commit is contained in:
@@ -27,6 +27,12 @@ namespace Manager.Data.Migrations
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<DateTime>("CreatedAtUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<DateTime>("LastModifiedUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
@@ -154,10 +160,10 @@ namespace Manager.Data.Migrations
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<DateTime>("DateAddedUtc")
|
||||
b.Property<DateTime>("CreatedAtUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<DateTime>("DateModifiedUtc")
|
||||
b.Property<DateTime>("LastModifiedUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.HasKey("PlaylistId", "MediaId");
|
||||
@@ -239,6 +245,9 @@ namespace Manager.Data.Migrations
|
||||
b.Property<long>("ContentLengthBytes")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTime>("CreatedAtUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<double?>("Framerate")
|
||||
.HasColumnType("REAL");
|
||||
|
||||
@@ -251,6 +260,9 @@ namespace Manager.Data.Migrations
|
||||
b.Property<long>("LastModifiedUnixEpoch")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTime>("LastModifiedUtc")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<double?>("LoudnessDb")
|
||||
.HasColumnType("REAL");
|
||||
|
||||
|
Reference in New Issue
Block a user