Libation 4.0 prep: add new fields Book.Locale, LibraryBook.Account. Migrate db
This commit is contained in:
parent
aeb0d2a82b
commit
2d459bb2cf
8 changed files with 389 additions and 4 deletions
|
|
@ -14,7 +14,7 @@ namespace DataLayer.Migrations
|
|||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "3.0.0");
|
||||
.HasAnnotation("ProductVersion", "3.1.7");
|
||||
|
||||
modelBuilder.Entity("DataLayer.Book", b =>
|
||||
{
|
||||
|
|
@ -40,6 +40,9 @@ namespace DataLayer.Migrations
|
|||
b.Property<int>("LengthInMinutes")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Locale")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("PictureId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
|
|
@ -141,6 +144,9 @@ namespace DataLayer.Migrations
|
|||
b.Property<int>("BookId")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Account")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<DateTime>("DateAdded")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue