2022-10-20 05:48:41 -05:00
|
|
|
##########################################################################
|
|
|
|
#
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
#
|
2024-12-31 23:56:42 -06:00
|
|
|
# Copyright (C) 2013 - 2025, The pgAdmin Development Team
|
2022-10-20 05:48:41 -05:00
|
|
|
# This software is released under the PostgreSQL Licence
|
|
|
|
#
|
|
|
|
##########################################################################
|
|
|
|
"""
|
2017-07-21 06:44:57 -05:00
|
|
|
|
|
|
|
Revision ID: d85a62333272
|
|
|
|
Revises: 3c1e4b6eda55
|
|
|
|
Create Date: 2017-07-07 16:03:23.842734
|
|
|
|
|
|
|
|
"""
|
2022-10-20 05:48:41 -05:00
|
|
|
import sqlalchemy as sa
|
|
|
|
from alembic import op
|
2017-07-21 06:44:57 -05:00
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
|
|
revision = 'd85a62333272'
|
|
|
|
down_revision = 'f195f9a4923d'
|
|
|
|
branch_labels = None
|
|
|
|
depends_on = None
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
2022-10-20 05:48:41 -05:00
|
|
|
op.add_column('server', sa.Column('db_res', sa.String()))
|
2017-07-21 06:44:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
2020-07-24 01:16:30 -05:00
|
|
|
# pgAdmin only upgrades, downgrade not implemented.
|
2017-07-21 06:44:57 -05:00
|
|
|
pass
|