Skip to content
Snippets Groups Projects
Commit f64b6104 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Add test accounts for email confirmation

parent 11a3e755
No related branches found
No related tags found
No related merge requests found
No preview for this file type
"""empty message
Revision ID: 69f5d9c59c34
Revises: 0d4e0dde8ae4
Create Date: 2019-07-08 15:22:12.342890
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '69f5d9c59c34'
down_revision = '0d4e0dde8ae4'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('users', sa.Column('confirmed', sa.Boolean(), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('users', 'confirmed')
# ### end Alembic commands ###
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment