diff --git a/orm/shout.py b/orm/shout.py index cba6bddb..673d6ff0 100644 --- a/orm/shout.py +++ b/orm/shout.py @@ -17,6 +17,7 @@ class ShoutTopic(Base): id = None # type: ignore shout = Column(ForeignKey("shout.id"), primary_key=True, index=True) topic = Column(ForeignKey("topic.id"), primary_key=True, index=True) + main = Column(Boolean, nullable=True) class ShoutReactionsFollower(Base):