We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c210c commit 12a2fc4Copy full SHA for 12a2fc4
backend/python/app/models/__init__.py
@@ -80,6 +80,9 @@ def create_db_and_tables() -> None:
80
def init_app(_app: Any | None = None) -> None:
81
"""Initialize database for the application"""
82
# Import models to register them with SQLModel
83
+ from .entity import Entity # noqa: F401
84
+ from .simple_entity import SimpleEntity # noqa: F401
85
+ from .user import User # noqa: F401
86
87
init_database()
88
0 commit comments