Create chaptersync table for new databases

This commit is contained in:
inorichi 2015-11-25 20:05:30 +01:00
parent 1d5e8e02d3
commit e1a14be2bd

View File

@ -22,6 +22,7 @@ public class DbOpenHelper extends SQLiteOpenHelper {
public void onCreate(@NonNull SQLiteDatabase db) {
db.execSQL(MangaTable.getCreateTableQuery());
db.execSQL(ChapterTable.getCreateTableQuery());
db.execSQL(ChapterSyncTable.getCreateTableQuery());
}
@Override