diff --git a/WebHostLib/models.py b/WebHostLib/models.py index 58a749b5..3c7a42b2 100644 --- a/WebHostLib/models.py +++ b/WebHostLib/models.py @@ -33,7 +33,7 @@ class Seed(db.Entity): owner = Required(UUID, index=True) creation_time = Required(datetime, default=lambda: datetime.utcnow()) patches = Set(Patch) - spoiler = Optional(str, lazy=True) + spoiler = Optional(LongStr, lazy=True) class Command(db.Entity):