Skip to content

Commit

Permalink
Update postgis
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaczero committed Dec 29, 2024
1 parent 65cdfa5 commit 0da88b5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions alembic_/versions/2024_12_29_0753-612257f82942_postgis_update.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"""PostGIS update
Revision ID: 612257f82942
Revises: 9f60c90e8a21
Create Date: 2024-12-29 07:53:08.574574+00:00
"""

from collections.abc import Sequence

from alembic import op

# revision identifiers, used by Alembic.
revision: str = '612257f82942'
down_revision: str | None = '9f60c90e8a21'
branch_labels: str | Sequence[str] | None = None
depends_on: str | Sequence[str] | None = None


def upgrade() -> None:
op.execute('SELECT postgis_extensions_upgrade();')


def downgrade() -> None:
pass

0 comments on commit 0da88b5

Please sign in to comment.