diff --git a/orm/community.py b/orm/community.py index 0b8b6d1c..1d34b50c 100644 --- a/orm/community.py +++ b/orm/community.py @@ -26,4 +26,4 @@ class Community(Base): pic = Column(String, nullable=False, default='') created_at = Column(Integer, nullable=False, default=lambda: int(time.time())) - authors = relationship(Author, secondary='shout_author') + authors = relationship(Author, secondary='community_author')