model-index-slug
All checks were successful
Deploy to core / deploy (push) Successful in 1m39s

This commit is contained in:
2024-02-19 13:25:47 +03:00
parent 8193bd0178
commit b89060f15f
6 changed files with 7 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ class Community(Base):
__tablename__ = 'community'
name = Column(String, nullable=False)
slug = Column(String, nullable=False, unique=True)
slug = Column(String, nullable=False, unique=True, index=True)
desc = Column(String, nullable=False, default='')
pic = Column(String, nullable=False, default='')
created_at = Column(Integer, nullable=False, default=lambda: int(time.time()))