core/orm/__init__.py
Untone 46e684b28d
Some checks failed
deploy / deploy (push) Failing after 2m0s
core-update
2023-10-25 19:55:30 +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)
Shout.init_table()
Community.init_table()
print("[orm] tables initialized")