core/orm/__init__.py

11 lines
247 B
Python
Raw Normal View History

2023-10-23 14:51:13 +00:00
from services.db import Base, engine
from orm.shout import Shout
2023-10-25 16:55:30 +00:00
from orm.community import Community
2023-11-03 10:10:22 +00:00
def init_tables():
Base.metadata.create_all(engine)
2023-10-25 17:02:01 +00:00
Shout.init_table()
2023-11-03 10:10:22 +00:00
Community.init_table()
print("[orm] tables initialized")