mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
more sqlalchemy workarounds
This commit is contained in:
parent
a23098c92c
commit
458357548f
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ fieldModelsTable = Table(
|
|||
Column('quizFontFamily', UnicodeText, default=u"Arial"),
|
||||
Column('quizFontSize', Integer, default=20),
|
||||
Column('quizFontColour', String(7)),
|
||||
Column('editFontFamily', Boolean, default=True), # reused as <pre> toggle
|
||||
Column('editFontFamily', UnicodeText, default=u"1"), # reused as <pre> toggle
|
||||
Column('editFontSize', Integer, default=20))
|
||||
|
||||
class FieldModel(object):
|
||||
|
|
Loading…
Reference in a new issue