core/orm/__init__.py

9 lines
184 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
2022-11-19 11:35:34 +00:00
def init_tables():
Base.metadata.create_all(engine)
Shout.init_table()
print("[orm] tables initialized")