inbox/orm/__init__.py

7 lines
133 B
Python
Raw Normal View History

2023-10-03 14:15:17 +00:00
from services.db import Base, engine
def init_tables():
Base.metadata.create_all(engine)
print("[orm] tables initialized")