# Import all models here for Alembic to detect them # These imports are needed for Alembic to detect the models, even if they appear unused to linters from app.db.base_class import Base # noqa: F401 from app.models.user import User # noqa: F401 from app.models.client import Client # noqa: F401 from app.models.invoice import Invoice, InvoiceItem # noqa: F401