Add default value to turn_count column
This commit is contained in:
parent
4c3dcfe0e5
commit
1d5023c41b
|
@ -148,7 +148,7 @@ class Lexicon(ModelBase):
|
||||||
current_turn = Column(Integer, nullable=True)
|
current_turn = Column(Integer, nullable=True)
|
||||||
|
|
||||||
# The number of turns in the game
|
# The number of turns in the game
|
||||||
turn_count = Column(Integer, nullable=False)
|
turn_count = Column(Integer, nullable=False, default=8)
|
||||||
|
|
||||||
################################
|
################################
|
||||||
# Visibility and join settings #
|
# Visibility and join settings #
|
||||||
|
|
Loading…
Reference in New Issue