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
|
2023-10-25 16:55:30 +00:00
|
|
|
from orm.community import Community
|
2023-10-10 06:35:27 +00:00
|
|
|
|
2023-11-03 10:10:22 +00:00
|
|
|
|
2023-10-10 06:35:27 +00:00
|
|
|
def init_tables():
|
|
|
|
Base.metadata.create_all(engine)
|
2023-10-25 17:02:01 +00:00
|
|
|
Shout.init_table()
|
2023-11-03 10:10:22 +00:00
|
|
|
Community.init_table()
|
2023-10-10 06:35:27 +00:00
|
|
|
print("[orm] tables initialized")
|