finish for init core

This commit is contained in:
2024-05-09 16:01:32 +00:00
parent ab1e864478
commit bc8815f40e
42 changed files with 520 additions and 214 deletions

5
fuware/db/init_db.py Normal file
View File

@ -0,0 +1,5 @@
from db_setup import engine
from models._model_base import Model
from models.users import *
Model.metadata.create_all(bind=engine)