38 lines
881 B
Python
38 lines
881 B
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2025, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
"""
|
|
|
|
Revision ID: e24b1c4def17
|
|
Revises: c62bcc14c3d6
|
|
Create Date: 2025-07-14 10:49:07.292086
|
|
|
|
"""
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'e24b1c4def17'
|
|
down_revision = 'c62bcc14c3d6'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# delete all data from the table
|
|
op.execute("DELETE FROM application_state")
|
|
|
|
# Drop unused columns
|
|
with op.batch_alter_table('application_state') as batch_op:
|
|
batch_op.drop_column('tool_name')
|
|
|
|
|
|
def downgrade():
|
|
# pgAdmin only upgrades, downgrade not implemented.
|
|
pass
|