28 lines
664 B
Python
28 lines
664 B
Python
"""empty message
|
|
|
|
Revision ID: 50aab465cf44
|
|
Revises: bfa4b406e22f
|
|
Create Date: 2019-10-05 22:37:07.643522
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '50aab465cf44'
|
|
down_revision = 'bfa4b406e22f'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('users', sa.Column('password', sa.String(length=255), nullable=False))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('users', 'password')
|
|
# ### end Alembic commands ###
|