core/orm/community.py

42 lines
1.4 KiB
Python
Raw Normal View History

2021-08-26 21:14:20 +00:00
from datetime import datetime
2022-11-24 08:27:01 +00:00
from sqlalchemy import Column, String, ForeignKey, DateTime
2022-08-11 05:53:14 +00:00
from base.orm import Base, local_session
2021-08-26 21:14:20 +00:00
2022-09-03 10:50:14 +00:00
class CommunityFollower(Base):
2022-09-03 10:50:14 +00:00
__tablename__ = "community_followers"
2022-09-03 10:50:14 +00:00
id = None # type: ignore
2022-11-29 12:36:46 +00:00
follower_id = Column(ForeignKey("user.id"), primary_key=True)
community_id = Column(ForeignKey("community.id"), primary_key=True)
2022-11-24 08:27:01 +00:00
joinedAt = Column(
2022-09-03 10:50:14 +00:00
DateTime, nullable=False, default=datetime.now, comment="Created at"
)
2022-11-24 08:27:01 +00:00
# role = Column(ForeignKey(Role.id), nullable=False, comment="Role for member")
2021-08-26 21:14:20 +00:00
class Community(Base):
2022-09-03 10:50:14 +00:00
__tablename__ = "community"
name = Column(String, nullable=False, comment="Name")
slug = Column(String, nullable=False, unique=True, comment="Slug")
desc = Column(String, nullable=False, default="")
pic = Column(String, nullable=False, default="")
createdAt = Column(
DateTime, nullable=False, default=datetime.now, comment="Created at"
)
@staticmethod
def init_table():
with local_session() as session:
2022-11-19 11:35:34 +00:00
d = (
2022-09-03 10:50:14 +00:00
session.query(Community).filter(Community.slug == "discours").first()
)
2022-11-19 11:35:34 +00:00
if not d:
2022-11-24 08:27:01 +00:00
d = Community.create(name="Дискурс", slug="discours")
2022-11-19 11:35:34 +00:00
session.add(d)
session.commit()
Community.default_community = d
2022-11-20 07:48:40 +00:00
print('[orm] default community id: %s' % d.id)