Added comments

This commit is contained in:
StNicolay
2022-10-14 15:41:55 +03:00
parent 3ebe4240bf
commit 29b7125a4d
3 changed files with 6 additions and 1 deletions

View File

@ -13,4 +13,4 @@ def get_engine(host: str, user: str, passwd: str, db: str) -> Engine:
def prepare(engine: Engine) -> None:
sqlmodel.SQLModel.metadata.create_all(engine)
sqlmodel.SQLModel.metadata.create_all(engine, [models.Account, models.MasterPass])