2022-10-20 05:48:41 -05:00
|
|
|
##########################################################################
|
|
|
|
#
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
#
|
2023-01-02 00:23:55 -06:00
|
|
|
# Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2022-10-20 05:48:41 -05:00
|
|
|
# This software is released under the PostgreSQL Licence
|
|
|
|
#
|
|
|
|
##########################################################################
|
|
|
|
"""
|
2019-05-28 01:30:18 -05:00
|
|
|
|
|
|
|
Revision ID: 35f29b1701bd
|
|
|
|
Revises: ec1cac3399c9
|
|
|
|
Create Date: 2019-04-26 16:38:08.368471
|
|
|
|
|
|
|
|
"""
|
2022-10-20 05:48:41 -05:00
|
|
|
from alembic import op
|
|
|
|
import sqlalchemy as sa
|
2019-05-28 01:30:18 -05:00
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
|
|
revision = '35f29b1701bd'
|
|
|
|
down_revision = 'ec1cac3399c9'
|
|
|
|
branch_labels = None
|
|
|
|
depends_on = None
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
2022-10-20 05:48:41 -05:00
|
|
|
op.add_column('user', sa.Column('masterpass_check', sa.String(length=256)))
|
2019-05-28 01:30:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
2020-07-24 01:16:30 -05:00
|
|
|
# pgAdmin only upgrades, downgrade not implemented.
|
2019-05-28 01:30:18 -05:00
|
|
|
pass
|