# Import all the models, so that Base has them before being # imported by Alembic from __future__ import annotations from app.db.base_class import Base # noqa from app.models.achievement import Achievement, UserAchievement # noqa from app.models.content import Answer, Lesson, Question, Quiz, Subject # noqa from app.models.progress import UserAnswer, UserProgress # noqa from app.models.user import User # noqa