mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-11 15:52:21 -05:00
25 lines
695 B
Python
25 lines
695 B
Python
"""
|
|
|
|
Revision ID: 0127_remove_unique_constraint
|
|
Revises: 0126_add_annual_billing
|
|
Create Date: 2017-10-17 16:47:37.826333
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
revision = '0127_remove_unique_constraint'
|
|
down_revision = '0126_add_annual_billing'
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index('ix_service_sms_senders_service_id', table_name='service_sms_senders')
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_index('ix_service_sms_senders_service_id', 'service_sms_senders', ['service_id'], unique=True)
|
|
# ### end Alembic commands ###
|