Disable database destructive migration fallback

This really shouldn't be enabled, as this database is not just a temp
one. Making the mistake of shipping the app without a proper migration
would cause a big problem.

Really hard to happen but an error is far better than data loss.
pull/2309/head
Mauricio Colli 2019-04-28 17:43:52 -03:00
rodzic c2535d7764
commit 0e2f062148
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F200BFD6F29DDD85
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -23,7 +23,6 @@ public final class NewPipeDatabase {
return Room
.databaseBuilder(context.getApplicationContext(), AppDatabase.class, DATABASE_NAME)
.addMigrations(MIGRATION_11_12)
.fallbackToDestructiveMigration()
.build();
}