"""SQLAlchemy ORM models. Importing this package registers every model on ``Base.metadata``, which is what ``alembic revision --autogenerate`` inspects. A new model therefore has to be added to the imports below, not only to its own module. """ from app.models.mixins import TimestampMixin from app.models.paper_template import PaperTemplate from app.models.section_field import SectionField from app.models.template_field import TemplateField __all__ = [ "PaperTemplate", "SectionField", "TemplateField", "TimestampMixin", ]