mirror of https://github.com/M66B/FairEmail.git
Fixed DB upgrade in some situations
This commit is contained in:
parent
5c736a3281
commit
60f635160f
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue