core/orm/__init__.py

9 lines
181 B
Python
Raw Normal View History

2023-10-23 14:47:11 +00:00
from base.orm 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")