mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-16 10:12:32 -05:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
|
|
"""
|
||
|
|
|
||
|
|
Revision ID: 0390_drop_dvla_provider.py
|
||
|
|
Revises: 0389_no_more_letters.py
|
||
|
|
Create Date: 2023-02-28 14:25:50.751952
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
from sqlalchemy.dialects import postgresql
|
||
|
|
|
||
|
|
revision = '0390_drop_dvla_provider.py'
|
||
|
|
down_revision = '0389_no_more_letters.py'
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
# based on migration 0066, but without provider_rates
|
||
|
|
op.execute("DELETE FROM provider_details_history where display_name = 'DVLA'")
|
||
|
|
op.execute("DELETE FROM provider_details where display_name = 'DVLA'")
|
||
|
|
# ### end Alembic commands ###
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
# migration 0066 in reverse
|
||
|
|
provider_id = str(uuid.uuid4())
|
||
|
|
op.execute(
|
||
|
|
"INSERT INTO provider_details (id, display_name, identifier, priority, notification_type, active, version) values ('{}', 'DVLA', 'dvla', 50, 'letter', true, 1)".format(provider_id)
|
||
|
|
)
|
||
|
|
op.execute(
|
||
|
|
"INSERT INTO provider_details_history (id, display_name, identifier, priority, notification_type, active, version) values ('{}', 'DVLA', 'dvla', 50, 'letter', true, 1)".format(provider_id)
|
||
|
|
)
|
||
|
|
# ### end Alembic commands ###
|