Add missing migration to database builder

This commit is contained in:
Shinokuni 2020-10-27 21:33:49 +01:00
parent da6b68fd2e
commit c449a94260

View File

@ -8,6 +8,7 @@ val dbModule = module {
single(createdAtStart = true) {
Room.databaseBuilder(get(), Database::class.java, "readrops-db")
.addMigrations(Database.MIGRATION_1_2)
.addMigrations(Database.MIGRATION_2_3)
.build()
}
}