Fixed DB upgrade in some situations

pull/209/head
M66B 2 years ago
parent 5c736a3281
commit 60f635160f

@ -2447,7 +2447,7 @@ public abstract class DB extends RoomDatabase {
public void migrate(@NonNull SupportSQLiteDatabase db) {
logMigration(startVersion, endVersion);
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);
}
}).addMigrations(new Migration(241, 242) {

Loading…
Cancel
Save