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 0b1af74 commit f7c770dCopy full SHA for f7c770d
app/src/main/kotlin/com/simplemobiletools/notes/pro/databases/NotesDatabase.kt
@@ -81,9 +81,7 @@ abstract class NotesDatabase : RoomDatabase() {
81
82
private val MIGRATION_3_4 = object : Migration(3, 4) {
83
override fun migrate(database: SupportSQLiteDatabase) {
84
- database.apply {
85
- execSQL("ALTER TABLE widgets ADD COLUMN widget_show_title INTEGER NOT NULL DEFAULT 0")
86
- }
+ database.execSQL("ALTER TABLE widgets ADD COLUMN widget_show_title INTEGER NOT NULL DEFAULT 0")
87
}
88
89
0 commit comments