A simple flask webapp that includes user auth/login and REST API support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1.1 KiB

"""Adding tokens and api related functions
Revision ID: 7fb3d3939b8d
Revises: e1b952dc4b28
Create Date: 2019-04-28 16:56:03.996324
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '7fb3d3939b8d'
down_revision = 'e1b952dc4b28'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('user', schema=None) as batch_op:
batch_op.add_column(sa.Column('token', sa.String(length=32), nullable=True))
batch_op.add_column(sa.Column('token_expiration', sa.DateTime(), nullable=True))
batch_op.create_index(batch_op.f('ix_user_token'), ['token'], unique=True)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('user', schema=None) as batch_op:
batch_op.drop_index(batch_op.f('ix_user_token'))
batch_op.drop_column('token_expiration')
batch_op.drop_column('token')
# ### end Alembic commands ###