From 1d5023c41b4753a86d922d4ed8fffdf06c5c3b53 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 27 May 2021 17:39:22 -0700 Subject: [PATCH] Add default value to turn_count column --- amanuensis/db/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amanuensis/db/models.py b/amanuensis/db/models.py index acf8736..3f8597d 100644 --- a/amanuensis/db/models.py +++ b/amanuensis/db/models.py @@ -148,7 +148,7 @@ class Lexicon(ModelBase): current_turn = Column(Integer, nullable=True) # 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 #