mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Fix type
It is used as a string, and because how sqlite3 works internally the field can actually store a string, so no need for data migration.
This commit is contained in:
@ -178,7 +178,7 @@ bool DataBaseManagement::createTables(QSqlDatabase &database)
|
||||
"publisher TEXT,"
|
||||
"format TEXT,"
|
||||
"color BOOLEAN,"
|
||||
"ageRating BOOLEAN," // this is actually a string (TEXT), funny thing is that the current implementation works
|
||||
"ageRating TEXT,"
|
||||
|
||||
"synopsis TEXT,"
|
||||
"characters TEXT,"
|
||||
|
Reference in New Issue
Block a user