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
|
//new 7.1 fields
|
||||||
"finished BOOLEAN DEFAULT 0," //reading
|
"finished BOOLEAN DEFAULT 0," //reading
|
||||||
"completed BOOLEAN DEFAULT 1," //collecting
|
"completed BOOLEAN DEFAULT 1," //collecting
|
||||||
//--
|
//new 8.6 fields
|
||||||
"FOREIGN KEY(parentId) REFERENCES folder(id) ON DELETE CASCADE)");
|
"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();
|
success = success && queryFolder.exec();
|
||||||
|
|
||||||
//COMIC (representa un cómic en disco, contiene el nombre de fichero)
|
//COMIC (representa un cómic en disco, contiene el nombre de fichero)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user