32 lines
847 B
Python
32 lines
847 B
Python
"""Database model package.
|
|
|
|
Import all model modules during package initialization so SQLAlchemy can
|
|
resolve string-based relationships regardless of route/service import order.
|
|
"""
|
|
|
|
from . import atp_model, audit_log, auth_session, calendar_event, elevation, file_storage, hot_search, lightning_event, lightning_sample, line, line_tower, menu, model_registry, object_group, question_bank, rbac, requirement, system_param, todo, user, worker_registry
|
|
|
|
__all__ = [
|
|
"atp_model",
|
|
"audit_log",
|
|
"auth_session",
|
|
"calendar_event",
|
|
"elevation",
|
|
"file_storage",
|
|
"hot_search",
|
|
"lightning_event",
|
|
"lightning_sample",
|
|
"line",
|
|
"line_tower",
|
|
"menu",
|
|
"model_registry",
|
|
"object_group",
|
|
"question_bank",
|
|
"rbac",
|
|
"requirement",
|
|
"system_param",
|
|
"todo",
|
|
"user",
|
|
"worker_registry",
|
|
]
|