"""Parcel ORM placeholder. The legacy `Parcel` model (`__tablename__ = "parcels"`) was removed: nothing in the app imports it, and real cadastral data lives in raw-SQL tables `cad_parcels` / `cad_parcels_geom` (see data/sql/92_cad_bulk_layers.sql, data/sql/83_cad_parcels_geom.sql), not in a `parcels` table. Keeping the model on Base.metadata made `alembic revision --autogenerate` emit a phantom `CREATE TABLE parcels` for a table that must never exist (issue #1569). No ORM model is defined here. `Base` is re-exported for import continuity. """ from app.core.db import Base __all__ = ["Base"]