Fix migration
This commit is contained in:
parent
31bdc2bc81
commit
4ff9a37052
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ abstract class Database : RoomDatabase() {
|
||||||
|
|
||||||
private val MIGRATION_9_10 = object : Migration(9, 10) {
|
private val MIGRATION_9_10 = object : Migration(9, 10) {
|
||||||
override fun migrate(db: SupportSQLiteDatabase) {
|
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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue