7 lines
133 B
Python
7 lines
133 B
Python
|
from services.db import Base, engine
|
||
|
|
||
|
|
||
|
def init_tables():
|
||
|
Base.metadata.create_all(engine)
|
||
|
print("[orm] tables initialized")
|