mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-10 10:03:38 -04:00
reformat
This commit is contained in:
@@ -9,47 +9,79 @@ Create Date: 2017-07-10 11:18:27.267721
|
||||
from alembic import op
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
revision = '0106_null_noti_status'
|
||||
down_revision = '0105_opg_letter_org'
|
||||
revision = "0106_null_noti_status"
|
||||
down_revision = "0105_opg_letter_org"
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.alter_column(
|
||||
'notification_history',
|
||||
'status',
|
||||
"notification_history",
|
||||
"status",
|
||||
existing_type=postgresql.ENUM(
|
||||
'created', 'sending', 'delivered', 'pending', 'failed', 'technical-failure',
|
||||
'temporary-failure', 'permanent-failure', 'sent', name='notify_status_type'
|
||||
"created",
|
||||
"sending",
|
||||
"delivered",
|
||||
"pending",
|
||||
"failed",
|
||||
"technical-failure",
|
||||
"temporary-failure",
|
||||
"permanent-failure",
|
||||
"sent",
|
||||
name="notify_status_type",
|
||||
),
|
||||
nullable=True
|
||||
nullable=True,
|
||||
)
|
||||
op.alter_column(
|
||||
'notifications',
|
||||
'status',
|
||||
"notifications",
|
||||
"status",
|
||||
existing_type=postgresql.ENUM(
|
||||
'created', 'sending', 'delivered', 'pending', 'failed', 'technical-failure',
|
||||
'temporary-failure', 'permanent-failure', 'sent', name='notify_status_type'
|
||||
"created",
|
||||
"sending",
|
||||
"delivered",
|
||||
"pending",
|
||||
"failed",
|
||||
"technical-failure",
|
||||
"temporary-failure",
|
||||
"permanent-failure",
|
||||
"sent",
|
||||
name="notify_status_type",
|
||||
),
|
||||
nullable=True
|
||||
nullable=True,
|
||||
)
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.alter_column(
|
||||
'notifications',
|
||||
'status',
|
||||
"notifications",
|
||||
"status",
|
||||
existing_type=postgresql.ENUM(
|
||||
'created', 'sending', 'delivered', 'pending', 'failed', 'technical-failure',
|
||||
'temporary-failure', 'permanent-failure', 'sent', name='notify_status_type'
|
||||
"created",
|
||||
"sending",
|
||||
"delivered",
|
||||
"pending",
|
||||
"failed",
|
||||
"technical-failure",
|
||||
"temporary-failure",
|
||||
"permanent-failure",
|
||||
"sent",
|
||||
name="notify_status_type",
|
||||
),
|
||||
nullable=False
|
||||
nullable=False,
|
||||
)
|
||||
op.alter_column(
|
||||
'notification_history',
|
||||
'status',
|
||||
"notification_history",
|
||||
"status",
|
||||
existing_type=postgresql.ENUM(
|
||||
'created', 'sending', 'delivered', 'pending', 'failed', 'technical-failure',
|
||||
'temporary-failure', 'permanent-failure', 'sent', name='notify_status_type'
|
||||
"created",
|
||||
"sending",
|
||||
"delivered",
|
||||
"pending",
|
||||
"failed",
|
||||
"technical-failure",
|
||||
"temporary-failure",
|
||||
"permanent-failure",
|
||||
"sent",
|
||||
name="notify_status_type",
|
||||
),
|
||||
nullable=False
|
||||
nullable=False,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user