mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-16 20:48:37 -04:00
22 lines
358 B
Python
22 lines
358 B
Python
"""
|
|
|
|
Revision ID: 0345_move_broadcast_provider
|
|
Revises: 0344_stubbed_not_nullable
|
|
Create Date: 2021-02-09 09:19:07.957980
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
revision = '0345_move_broadcast_provider'
|
|
down_revision = '0344_stubbed_not_nullable'
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|