Room Database Migrate method
public void migrate(SupportSQLiteDatabase database) {
database.execSQL("ALTER TABLE menuItems ADD COLUMN cnt INTEGER DEFAULT 0 NOT NULL");
}
database is throwing an error
java.lang.IllegalStateException: attempt to re-open an already-closed object: SQLiteDatabase:
I have not used database close method anywhere in the method. I am not able to alter database table. How to get rid of above exception.
I tried to open database in migrate method.