leechard / app /db /models.py
nenae18's picture
Deploy LeeChard
5d3c2a9 verified
Raw
History Blame Contribute Delete
538 Bytes
"""Import SQLAlchemy models so they are registered on Base.metadata.
Keep these imports out of app.db.base. Model modules import Base, so importing
models from base.py creates a circular import when a model is imported first.
"""
from app.models.artifact import AttemptArtifact # noqa: F401
from app.models.consent import CustomerConsent # noqa: F401
from app.models.outbox import OutboxEvent # noqa: F401
from app.models.photo_task import PhotoTask # noqa: F401
from app.models.task_event import TaskEvent # noqa: F401