From 3d431017af178f6e3c6cf5ec7d6569c821eed388 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 27 Jun 2017 14:10:26 +0200 Subject: [PATCH] raid_seed as varchar --- monocle/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monocle/db.py b/monocle/db.py index 110db2c7..448fea62 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(HUGE_TYPE) + raid_seed = Column(String(50)) raid_battle_ms = Column(Integer, index=True) raid_spawn_ms = Column(Integer, index=True) raid_end_ms = Column(Integer, index=True)