1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-06 03:33:07 +00:00

Allow DB downgrade

This commit is contained in:
M66B 2024-09-28 20:30:58 +02:00
parent ed740389d0
commit 31a91cfc10

View file

@ -3046,6 +3046,11 @@ public abstract class DB extends RoomDatabase {
db.execSQL("UPDATE account SET keep_alive_noop = 1" +
" WHERE pop = " + EntityAccount.TYPE_IMAP);
}
}).addMigrations(new Migration(300, 299) {
@Override
public void migrate(@NonNull SupportSQLiteDatabase db) {
logMigration(startVersion, endVersion);
}
}).addMigrations(new Migration(998, 999) {
@Override
public void migrate(@NonNull SupportSQLiteDatabase db) {