db migration to remove license keys from Books table. They are not really data related to a book. Also, it was causing problems on update due to other persistence choices. For now, store decrypt keys along side of encrypted file instead.

This commit is contained in:
Robert McRackan 2021-06-22 17:02:00 -04:00
parent b1a033e162
commit 305de34a76
4 changed files with 415 additions and 7 deletions

View file

@ -22,12 +22,6 @@ namespace DataLayer.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("AudibleIV")
.HasColumnType("TEXT");
b.Property<string>("AudibleKey")
.HasColumnType("TEXT");
b.Property<string>("AudibleProductId")
.HasColumnType("TEXT");