mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-10 07:12:20 -05:00
23 lines
465 B
Python
23 lines
465 B
Python
"""
|
|
|
|
Revision ID: 0145_add_notification_reply_to
|
|
Revises: 0144_template_service_letter
|
|
Create Date: 2017-11-22 14:23:48.806781
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
revision = "0145_add_notification_reply_to"
|
|
down_revision = "0144_template_service_letter"
|
|
|
|
|
|
def upgrade():
|
|
op.add_column(
|
|
"notifications", sa.Column("reply_to_text", sa.String(), nullable=True)
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_column("notifications", "reply_to_text")
|