draft2shout

This commit is contained in:
2023-02-17 17:30:38 +03:00
parent 542f9e4250
commit 2b91f5a529
4 changed files with 109 additions and 44 deletions

View File

@@ -13,6 +13,7 @@ class DraftTopic(Base):
id = None # type: ignore
collab = Column(ForeignKey("draft_collab.id"), primary_key=True)
topic = Column(ForeignKey("topic.id"), primary_key=True)
main = Column(Boolean, default=False)
class DraftAuthor(Base):