Skip to content

Commit bc22f9d

Browse files
committed
Fix sql cmd
1 parent a4a96cb commit bc22f9d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

app/src/main/java/com/duckduckgo/app/global/db/AppDatabase.kt

+1-4
Original file line numberDiff line numberDiff line change
@@ -690,10 +690,7 @@ class MigrationsProvider(val context: Context, val settingsDataStore: SettingsDa
690690

691691
private val MIGRATION_57_TO_58: Migration = object : Migration(57, 58) {
692692
override fun migrate(database: SupportSQLiteDatabase) {
693-
database.execSQL(
694-
"DROP TABLE IF EXISTS `refreshes` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, " +
695-
"`timestamp` INTEGER NOT NULL)",
696-
)
693+
database.execSQL("DROP TABLE IF EXISTS `refreshes`")
697694
}
698695
}
699696

0 commit comments

Comments
 (0)