Skip to content

Commit

Permalink
raid_seed as BIGINT
Browse files Browse the repository at this point in the history
  • Loading branch information
sebast1219 committed Jun 27, 2017
1 parent 2612402 commit bc07556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monocle/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class RaidSighting(Base):
__tablename__ = 'fort_raids'
id = Column(Integer, primary_key=True)
fort_id = Column(Integer, ForeignKey('forts.id'))
raid_seed = Column(Integer)
raid_seed = Column(BIGINT)
raid_battle_ms = Column(Integer, index=True)
raid_spawn_ms = Column(Integer, index=True)
raid_end_ms = Column(Integer, index=True)
Expand Down

0 comments on commit bc07556

Please sign in to comment.