29 lines
653 B
Python
29 lines
653 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: bdc3cd5d7499
|
||
|
Revises: 16c70b11242e
|
||
|
Create Date: 2019-10-05 22:34:04.358841
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = 'bdc3cd5d7499'
|
||
|
down_revision = '16c70b11242e'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('moves', sa.Column('is_pass', sa.Boolean(), nullable=False))
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('moves', 'is_pass')
|
||
|
# ### end Alembic commands ###
|