Fix migration

This commit is contained in:
Philipp Heckel 2022-04-21 19:55:13 -04:00
parent 31bdc2bc81
commit 4ff9a37052

View file

@ -241,7 +241,7 @@ abstract class Database : RoomDatabase() {
private val MIGRATION_9_10 = object : Migration(9, 10) {
override fun migrate(db: SupportSQLiteDatabase) {
db.execSQL("ALTER TABLE Notification ADD COLUMN actions TEXT NOT NULL DEFAULT('')")
db.execSQL("ALTER TABLE Notification ADD COLUMN actions TEXT")
}
}
}