Skip to content

Commit

Permalink
Add missing migration to database builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinokuni committed Oct 27, 2020
1 parent da6b68f commit c449a94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions db/src/main/java/com/readrops/db/DbModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}

0 comments on commit c449a94

Please sign in to comment.