We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6aa2e commit fd9c7b3Copy full SHA for fd9c7b3
app/src/main/kotlin/com/simplemobiletools/launcher/databases/AppsDatabase.kt
@@ -40,6 +40,7 @@ abstract class AppsDatabase : RoomDatabase() {
40
private val MIGRATION_1_2 = object : Migration(1, 2) {
41
override fun migrate(database: SupportSQLiteDatabase) {
42
database.execSQL("ALTER TABLE home_screen_grid_items ADD COLUMN intent TEXT default '' NOT NULL")
43
+ database.execSQL("ALTER TABLE home_screen_grid_items ADD COLUMN shortcut_id TEXT default '' NOT NULL")
44
database.execSQL("ALTER TABLE home_screen_grid_items ADD COLUMN icon BLOB")
45
}
46
0 commit comments