mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 07:16:52 -06:00
34 lines
749 B
Python
34 lines
749 B
Python
|
##########################################################################
|
||
|
#
|
||
|
# pgAdmin 4 - PostgreSQL Tools
|
||
|
#
|
||
|
# Copyright (C) 2013 - 2018, The pgAdmin Development Team
|
||
|
# This software is released under the PostgreSQL Licence
|
||
|
#
|
||
|
##########################################################################
|
||
|
|
||
|
"""Added state of the utility process
|
||
|
|
||
|
Revision ID: b5b87fdfcb30
|
||
|
Revises: ece2e76bf60e
|
||
|
Create Date: 2018-10-24 12:37:59.487969
|
||
|
|
||
|
"""
|
||
|
from pgadmin.model import db
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = 'b5b87fdfcb30'
|
||
|
down_revision = 'ece2e76bf60e'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
db.engine.execute(
|
||
|
'ALTER TABLE process ADD COLUMN process_state INTEGER DEFAULT 0'
|
||
|
)
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
pass
|