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.
This commit is contained in:
Mauricio Colli 2019-04-28 17:43:52 -03:00
parent c2535d7764
commit 0e2f062148
No known key found for this signature in database
GPG Key ID: F200BFD6F29DDD85
1 changed files with 0 additions and 1 deletions

View File

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