デバッグのためにデータベースの破壊を許可

This commit is contained in:
r-ca 2024-01-14 15:09:44 +09:00
parent 656d3a5964
commit 52894cf19c
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -20,6 +20,8 @@ public class LacertaDatabaseModule {
LacertaDatabase.class,
"lacerta.db")
.allowMainThreadQueries() // Debug
.fallbackToDestructiveMigration() // Debug Only: マイグレーションがない場合などにデータベースを再生成する
.fallbackToDestructiveMigrationOnDowngrade() // Debug Only: マイグレーションがない場合などにデータベースを再生成する
.build();
}
}