2025-06-05 14:29:01 +00:00

7 lines
293 B
Python

# Import all the models, so that Base has them before being
# imported by Alembic
from app.db.base_class import Base # noqa
from app.models.user import User # noqa
from app.models.note import Note # noqa
from app.models.tag import Tag # noqa
from app.models.note_tag import NoteTag # noqa