mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
5 lines
175 B
Python
5 lines
175 B
Python
from sqlmodel import SQLModel
|
|
import backend.app.db.models.organisation # noqa: F401
|
|
from backend.app.db.connection import db_engine
|
|
|
|
SQLModel.metadata.create_all(db_engine)
|