15 lines
427 B
Python
15 lines
427 B
Python
"""
|
||
数据库 ORM 模型集合。
|
||
|
||
说明:
|
||
- 该包用于集中定义 SQLAlchemy ORM models,供 Alembic autogenerate 扫描。
|
||
- 需要在此处导入所有模型,确保 `Base.metadata` 完整。
|
||
"""
|
||
|
||
from app.db.models.content import Content
|
||
from app.db.models.content_profile import ContentProfile
|
||
from app.db.models.content_risk_flag import ContentRiskFlag
|
||
|
||
__all__ = ["Content", "ContentProfile", "ContentRiskFlag"]
|
||
|