mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 00:02:36 -05:00
24 lines
460 B
Python
24 lines
460 B
Python
"""
|
|
|
|
Revision ID: 0290_org_go_live_notes
|
|
Revises: 0289_precompiled_for_all
|
|
Create Date: 2019-05-13 14:55:10.291781
|
|
|
|
"""
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
revision = "0290_org_go_live_notes"
|
|
down_revision = "0289_precompiled_for_all"
|
|
|
|
|
|
def upgrade():
|
|
op.add_column(
|
|
"organisation", sa.Column("request_to_go_live_notes", sa.Text(), nullable=True)
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_column("organisation", "request_to_go_live_notes")
|