2023-10-23 14:51:13 +00:00
|
|
|
from services.db import Base, engine
|
2022-09-17 18:12:14 +00:00
|
|
|
from orm.shout import Shout
|
2022-11-19 11:35:34 +00:00
|
|
|
|
2023-10-10 06:35:27 +00:00
|
|
|
|
|
|
|
def init_tables():
|
|
|
|
Base.metadata.create_all(engine)
|
|
|
|
Shout.init_table()
|
|
|
|
print("[orm] tables initialized")
|