diff --git a/orm/shout.py b/orm/shout.py index a178df08..22797952 100644 --- a/orm/shout.py +++ b/orm/shout.py @@ -25,6 +25,7 @@ class ShoutAuthor(Base): id = None shout = Column(ForeignKey('shout.slug'), primary_key = True) user = Column(ForeignKey('user.slug'), primary_key = True) + caption: str = Column(String, nullable=False, default = "") class ShoutAllowed(Base): __tablename__ = "shout_allowed"