update database: add columns for actions and deck

This commit is contained in:
Maximilian Keßler 2023-03-02 22:16:04 +01:00
parent bfc72c497d
commit a8a53c7690
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -31,7 +31,8 @@ def create_games_table():
"one_extra_card BOOLEAN,"
"one_less_card BOOLEAN,"
"all_or_nothing BOOLEAN,"
"num_turns SMALLINT"
"num_turns SMALLINT,"
"actions TEXT"
");".format(tablename))
conn.commit()
# else:
@ -51,6 +52,7 @@ def create_seeds_table():
"variant_id SMALLINT NOT NULL,"
"feasible BOOLEAN," # theoretical solvability
"max_score_theoretical SMALLINT" # if infeasible, max score
"deck VARCHAR(60)"
");".format(tablename))
conn.commit()