Skip to content

Commit

Permalink
Fix column name
Browse files Browse the repository at this point in the history
  • Loading branch information
shaldengeki committed Sep 22, 2024
1 parent 96368c1 commit e114fa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def upgrade():
"game_statistics",
sa.Column("id", sa.Integer, primary_key=True, autoincrement=True),
sa.Column("bga_table_id", sa.Integer, nullable=False),
sa.Column("user_id", sa.Integer, nullable=False),
sa.Column("bga_user_id", sa.Integer, nullable=False),
sa.Column("created_at", sa.DateTime, default=now, nullable=False),
# statistics. see PlayerStats in protobuf.
sa.Column("score", sa.Integer, nullable=False),
Expand Down

0 comments on commit e114fa5

Please sign in to comment.