"""SQLAlchemy ORM models. This package is intentionally empty. No model classes exist yet, and no tables are created by this project at import time. The schema will be introduced through Alembic migrations: alembic revision --autogenerate -m "describe the change" alembic upgrade head When the first model is written, add it here (or in a submodule imported from here) so that ``Base.metadata`` — and therefore autogenerate — can see it. """ __all__: list[str] = []