remove shout id

This commit is contained in:
knst-kotov 2022-06-14 22:35:28 +03:00
parent 7d26948cc1
commit 88cb8eb9ce

View File

@ -315,9 +315,9 @@ class CommentStat:
class Shout(Base):
__tablename__ = 'shout'
# id = None
id = None
slug: str = Column(String, nullable=True, unique=True)
slug: str = Column(String, primary_key=True)
community: int = Column(Integer, ForeignKey("community.id"), nullable=False, comment="Community")
body: str = Column(String, nullable=False, comment="Body")
createdAt: str = Column(DateTime, nullable=False, default = datetime.now, comment="Created at")