"""email_not_unique

Revision ID: 9e31709dc61b
Revises: 9a76db159a34
Create Date: 2023-01-11 13:19:40.995385

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '9e31709dc61b'
down_revision = '9a76db159a34'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_index('ix_cmf_auth_email', table_name='cmf_auth')
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.create_index('ix_cmf_auth_email', 'cmf_auth', ['email'], unique=False)
    # ### end Alembic commands ###
