Fixed DB upgrade in some situations

This commit is contained in:
M66B 2022-09-17 09:24:04 +02:00
parent 5c736a3281
commit 60f635160f
1 changed files with 1 additions and 1 deletions

View File

@ -2447,7 +2447,7 @@ public abstract class DB extends RoomDatabase {
public void migrate(@NonNull SupportSQLiteDatabase db) { public void migrate(@NonNull SupportSQLiteDatabase db) {
logMigration(startVersion, endVersion); logMigration(startVersion, endVersion);
db.execSQL("ALTER TABLE `folder` ADD COLUMN `inherited_type` TEXT"); db.execSQL("ALTER TABLE `folder` ADD COLUMN `inherited_type` TEXT");
db.execSQL("DROP VIEW `folder_view`"); db.execSQL("DROP VIEW IF EXISTS `folder_view`");
db.execSQL("CREATE VIEW IF NOT EXISTS `folder_view` AS " + TupleFolderView.query); db.execSQL("CREATE VIEW IF NOT EXISTS `folder_view` AS " + TupleFolderView.query);
} }
}).addMigrations(new Migration(241, 242) { }).addMigrations(new Migration(241, 242) {