mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-31 11:43:53 -04:00
29 lines
448 B
Python
29 lines
448 B
Python
"""
|
|
|
|
Revision ID: 0332_broadcast_provider_msg
|
|
Revises: 0331_add_broadcast_org
|
|
Create Date: 2020-10-26 16:28:11.917468
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
revision = '0332_broadcast_provider_msg'
|
|
down_revision = '0331_add_broadcast_org'
|
|
|
|
STATUSES = [
|
|
'technical-failure',
|
|
'sending',
|
|
'returned-ack',
|
|
'returned-error',
|
|
]
|
|
|
|
|
|
def upgrade():
|
|
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass |