PCv5/migrations/versions/0fffe230b8ba_.py

29 lines
681 B
Python

"""empty message
Revision ID: 0fffe230b8ba
Revises: 53f5ab9da859
Create Date: 2019-06-05 16:38:01.464333
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '0fffe230b8ba'
down_revision = '53f5ab9da859'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('member', 'innovation')
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('member', sa.Column('innovation', sa.INTEGER(), autoincrement=False, nullable=True))
# ### end Alembic commands ###