GeoIntel release gates / Compile, test, contracts and builds (push) Successful in 1m49s
GeoIntel release gates / Python and npm vulnerability policy (push) Successful in 21s
GeoIntel release gates / Production AI image, SBOM and container scan (push) Successful in 5m39s
GeoIntel release gates / Deploy exact gated revision to Unraid (push) Failing after 58m43s
23 lines
536 B
Python
23 lines
536 B
Python
"""Index partitioned vector features by dataset and municipality."""
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
revision = "202607160001"
|
|
down_revision = "202607150001"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.create_index(
|
|
"ix_vector_features_dataset_municipality",
|
|
"vector_features",
|
|
["dataset_id", sa.text("(properties_json ->> 'municipality')")],
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_index("ix_vector_features_dataset_municipality", table_name="vector_features")
|