core/orm/__init__.py
Untone 04dedaa3a3
Some checks failed
deploy / deploy (push) Failing after 2m0s
updates-fixes
2023-10-25 20:02:01 +03:00

10 lines
246 B
Python

from services.db import Base, engine
from orm.shout import Shout
from orm.community import Community
def init_tables():
Base.metadata.create_all(engine)
Community.init_table()
Shout.init_table()
print("[orm] tables initialized")