mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
removed extra comma
This commit is contained in:
parent
b8031268d0
commit
37d177e65a
@ -195,8 +195,13 @@ bool DataBaseManagement::createTables(QSqlDatabase & database)
|
||||
//new 7.1 fields
|
||||
"finished BOOLEAN DEFAULT 0," //reading
|
||||
"completed BOOLEAN DEFAULT 1," //collecting
|
||||
//--
|
||||
"FOREIGN KEY(parentId) REFERENCES folder(id) ON DELETE CASCADE)");
|
||||
//new 8.6 fields
|
||||
"numChildren INTEGER,"
|
||||
"firstChildId INTEGER,"
|
||||
"customImage TEXT,"
|
||||
"FOREIGN KEY(parentId) REFERENCES folder(id) ON DELETE CASCADE), "
|
||||
//8.6
|
||||
"FOREIGN KEY(firstChildId) REFERENCES comic_info(id))");
|
||||
success = success && queryFolder.exec();
|
||||
|
||||
//COMIC (representa un cómic en disco, contiene el nombre de fichero)
|
||||
|
Loading…
x
Reference in New Issue
Block a user