Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
shaldengeki committed Sep 22, 2024
1 parent e6f403d commit 96368c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def upgrade():
sa.Column("cards_discarded", sa.Integer, nullable=False),
sa.Column("played_sponsors", sa.Integer, nullable=False),
sa.Column("played_animals", sa.Integer, nullable=False),
sa.Column("release_animals", sa.Integer, nullable=False),
sa.Column("released_animals", sa.Integer, nullable=False),
sa.Column("association_workers", sa.Integer, nullable=False),
sa.Column("association_donations", sa.Integer, nullable=False),
sa.Column("association_reputation_actions", sa.Integer, nullable=False),
Expand All @@ -75,7 +75,7 @@ def upgrade():
sa.Column("built_unique_buildings", sa.Integer, nullable=False),
sa.Column("hexes_covered", sa.Integer, nullable=False),
sa.Column("hexes_empty", sa.Integer, nullable=False),
sa.Column("upgraded_action_cards", sa.Boolean, nullable=False),
sa.Column("upgraded_action_cards", sa.Integer, nullable=False),
sa.Column("upgraded_animals", sa.Boolean, nullable=False),
sa.Column("upgraded_build", sa.Boolean, nullable=False),
sa.Column("upgraded_cards", sa.Boolean, nullable=False),
Expand Down
2 changes: 1 addition & 1 deletion ark_nova_stats/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ class GameStatistics(db.Model):
built_unique_buildings: Mapped[int]
hexes_covered: Mapped[int]
hexes_empty: Mapped[int]
upgraded_action_cards: Mapped[bool]
upgraded_action_cards: Mapped[int]
upgraded_animals: Mapped[bool]
upgraded_build: Mapped[bool]
upgraded_cards: Mapped[bool]
Expand Down

0 comments on commit 96368c1

Please sign in to comment.