mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 6664d75ce3d4
|
||
|
Revises: b9f849432543
|
||
|
Create Date: 2020-02-10 23:10:09.134369
|
||
|
|
||
|
"""
|
||
|
import sqlalchemy_utils
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '6664d75ce3d4'
|
||
|
down_revision = 'b9f849432543'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.create_table('mailbox',
|
||
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
||
|
sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False),
|
||
|
sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True),
|
||
|
sa.Column('user_id', sa.Integer(), nullable=False),
|
||
|
sa.Column('email', sa.String(length=256), nullable=False),
|
||
|
sa.Column('verified', sa.Boolean(), nullable=False),
|
||
|
sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'),
|
||
|
sa.PrimaryKeyConstraint('id'),
|
||
|
sa.UniqueConstraint('email')
|
||
|
)
|
||
|
op.add_column('gen_email', sa.Column('mailbox_id', sa.Integer(), nullable=True))
|
||
|
op.create_foreign_key(None, 'gen_email', 'mailbox', ['mailbox_id'], ['id'], ondelete='cascade')
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_constraint(None, 'gen_email', type_='foreignkey')
|
||
|
op.drop_column('gen_email', 'mailbox_id')
|
||
|
op.drop_table('mailbox')
|
||
|
# ### end Alembic commands ###
|