mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-25 02:44:18 +00:00
Add test accounts for email confirmation
This commit is contained in:
parent
11a3e7551f
commit
f64b6104fe
BIN
data_dev.sqlite
BIN
data_dev.sqlite
Binary file not shown.
28
migrations/versions/69f5d9c59c34_.py
Normal file
28
migrations/versions/69f5d9c59c34_.py
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
"""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 ###
|
Loading…
Reference in New Issue
Block a user