mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
"""empty message
|
|
|
|
Revision ID: 3d05479d0d11
|
|
Revises: d8a3dfe674f2
|
|
Create Date: 2022-01-03 10:25:00.673761
|
|
|
|
"""
|
|
import sqlalchemy_utils
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '3d05479d0d11'
|
|
down_revision = 'd8a3dfe674f2'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('invalid_mailbox_domain',
|
|
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('domain', sa.String(length=256), nullable=False),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
sa.UniqueConstraint('domain')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('invalid_mailbox_domain')
|
|
# ### end Alembic commands ###
|