mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-25 03:51:44 -05:00
22 lines
352 B
Python
22 lines
352 B
Python
"""
|
|
|
|
Revision ID: 0337_broadcast_msg_api
|
|
Revises: 0336_broadcast_msg_content_2
|
|
Create Date: 2020-12-04 15:06:22.544803
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
revision = '0337_broadcast_msg_api'
|
|
down_revision = '0336_broadcast_msg_content_2'
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|