2021-12-01 05:51:28 -06:00
|
|
|
##########################################################################
|
|
|
|
#
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
#
|
2024-01-01 02:43:48 -06:00
|
|
|
# Copyright (C) 2013 - 2024, The pgAdmin Development Team
|
2021-12-01 05:51:28 -06:00
|
|
|
# This software is released under the PostgreSQL Licence
|
|
|
|
#
|
|
|
|
##########################################################################
|
|
|
|
|
2022-10-20 05:48:41 -05:00
|
|
|
"""
|
2021-12-01 05:51:28 -06:00
|
|
|
|
|
|
|
Revision ID: 3ce25f562f3b
|
|
|
|
Revises: 6650c52670c2
|
|
|
|
Create Date: 2021-12-01 11:52:09.037749
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
|
|
revision = '3ce25f562f3b'
|
|
|
|
down_revision = '6650c52670c2'
|
|
|
|
branch_labels = None
|
|
|
|
depends_on = None
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
2022-10-20 05:48:41 -05:00
|
|
|
# After using alembic the old logic is not required.
|
|
|
|
pass
|
2021-12-02 04:55:59 -06:00
|
|
|
|
2021-12-01 05:51:28 -06:00
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
# pgAdmin only upgrades, downgrade not implemented.
|
|
|
|
pass
|