From d37f68869c21c0b4f32bba2a73229e2f3025a45e Mon Sep 17 00:00:00 2001 From: Untone Date: Sat, 9 Dec 2023 20:15:57 +0300 Subject: [PATCH] alchemy-fix --- orm/shout.py | 1 + 1 file changed, 1 insertion(+) 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):