default to new cards in order

This commit is contained in:
Damien Elmes 2008-10-13 17:53:12 +09:00
parent b896c16089
commit 3933e14c1b

View file

@ -67,7 +67,7 @@ decksTable = Table(
Column('lowPriority', UnicodeText, nullable=False, default=u"LowPriority"), Column('lowPriority', UnicodeText, nullable=False, default=u"LowPriority"),
Column('suspended', UnicodeText, nullable=False, default=u"Suspended"), Column('suspended', UnicodeText, nullable=False, default=u"Suspended"),
# 0 is random, 1 is by input date # 0 is random, 1 is by input date
Column('newCardOrder', Integer, nullable=False, default=0), Column('newCardOrder', Integer, nullable=False, default=1),
# when to show new cards # when to show new cards
Column('newCardSpacing', Integer, nullable=False, default=NEW_CARDS_DISTRIBUTE), Column('newCardSpacing', Integer, nullable=False, default=NEW_CARDS_DISTRIBUTE),
# limit the number of failed cards in play # limit the number of failed cards in play