Skip to content

Commit

Permalink
fix: 実行順序を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
pantasystem committed Nov 5, 2023
1 parent 22aa45b commit 6348062
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ val MIGRATION_51_52 = object : Migration(51, 52) {
val MIGRATION_57_58 = object : Migration(57, 58) {
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL("DROP TABLE IF EXISTS 'connection_information'")
database.execSQL("DROP TABLE IF EXISTS 'account'")
database.execSQL("DROP TABLE IF EXISTS 'page'")
database.execSQL("DROP TABLE IF EXISTS 'account'")
}
}

0 comments on commit 6348062

Please sign in to comment.