core-update
Some checks failed
deploy / deploy (push) Failing after 2m0s

This commit is contained in:
2023-10-25 19:55:30 +03:00
parent e151034bab
commit 46e684b28d
8 changed files with 17 additions and 39 deletions

View File

@@ -1,8 +1,9 @@
from services.db import Base, engine
from orm.shout import Shout
from orm.community import Community
def init_tables():
Base.metadata.create_all(engine)
Shout.init_table()
Community.init_table()
print("[orm] tables initialized")