mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
35 lines
1001 B
Python
35 lines
1001 B
Python
"""
|
|
|
|
Revision ID: 0238_add_validation_failed
|
|
Revises: 0237_add_filename_to_dvla_org
|
|
Create Date: 2018-09-03 11:24:58.773824
|
|
|
|
"""
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
revision = "0238_add_validation_failed"
|
|
down_revision = "0237_add_filename_to_dvla_org"
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.execute(
|
|
"INSERT INTO notification_status_types (name) VALUES ('validation-failed')"
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.execute(
|
|
"UPDATE notifications SET notification_status = 'permanent-failure' WHERE notification_status = 'validation-failed'"
|
|
)
|
|
op.execute(
|
|
"UPDATE notification_history SET notification_status = 'permanent-failure' WHERE notification_status = 'validation-failed'"
|
|
)
|
|
|
|
op.execute("DELETE FROM notification_status_types WHERE name = 'validation-failed'")
|
|
# ### end Alembic commands ###
|