Allow subscribing to folders

This commit is contained in:
M66B
2019-04-25 18:47:52 +02:00
parent ffb64cd8ba
commit d38027eabe
7 changed files with 79 additions and 5 deletions

View File

@@ -553,7 +553,7 @@ public abstract class DB extends RoomDatabase {
@Override
public void migrate(SupportSQLiteDatabase db) {
Log.i("DB migration from version " + startVersion + " to " + endVersion);
db.execSQL("DELETE FROM operation WHERE name = '" + EntityOperation.WAIT + "'");
db.execSQL("DELETE FROM operation WHERE name = 'wait'");
}
})
.addMigrations(new Migration(51, 52) {