From bc07556a9d7e482525b2765ad1218649021f2b81 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 27 Jun 2017 13:45:47 +0200 Subject: [PATCH] raid_seed as BIGINT --- monocle/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monocle/db.py b/monocle/db.py index 60ee4765..55bdf07f 100644 --- a/monocle/db.py +++ b/monocle/db.py @@ -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)