mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-27 19:20:21 -06:00
27 lines
406 B
Python
27 lines
406 B
Python
|
|
"""empty message
|
|
|
|
Revision ID: d85a62333272
|
|
Revises: 3c1e4b6eda55
|
|
Create Date: 2017-07-07 16:03:23.842734
|
|
|
|
"""
|
|
from pgadmin.model import db
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'd85a62333272'
|
|
down_revision = 'f195f9a4923d'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
db.engine.execute(
|
|
'ALTER TABLE server ADD COLUMN db_res TEXT'
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
pass
|