typo-fix
All checks were successful
Deploy to core / deploy (push) Successful in 1m26s

This commit is contained in:
Untone 2024-02-20 12:58:16 +03:00
parent 8b08e23801
commit 5af3dcb132

View File

@ -26,4 +26,4 @@ class Community(Base):
pic = Column(String, nullable=False, default='') pic = Column(String, nullable=False, default='')
created_at = Column(Integer, nullable=False, default=lambda: int(time.time())) created_at = Column(Integer, nullable=False, default=lambda: int(time.time()))
authors = relationship(Author, secondary='shout_author') authors = relationship(Author, secondary='community_author')