mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 02:53:09 +01:00
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:
parent
c2535d7764
commit
0e2f062148
@ -23,7 +23,6 @@ public final class NewPipeDatabase {
|
||||
return Room
|
||||
.databaseBuilder(context.getApplicationContext(), AppDatabase.class, DATABASE_NAME)
|
||||
.addMigrations(MIGRATION_11_12)
|
||||
.fallbackToDestructiveMigration()
|
||||
.build();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user