2019-05-10 11:47:42 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
Revision ID: 0290_org_go_live_notes
|
|
|
|
|
Revises: 0289_precompiled_for_all
|
|
|
|
|
Create Date: 2019-05-13 14:55:10.291781
|
|
|
|
|
|
|
|
|
|
"""
|
2024-04-01 15:12:33 -07:00
|
|
|
|
2019-05-10 11:47:42 +01:00
|
|
|
import sqlalchemy as sa
|
2023-12-08 21:43:52 -05:00
|
|
|
from alembic import op
|
2019-05-10 11:47:42 +01:00
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
revision = "0290_org_go_live_notes"
|
|
|
|
|
down_revision = "0289_precompiled_for_all"
|
2019-05-10 11:47:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
2023-08-29 14:54:30 -07:00
|
|
|
op.add_column(
|
|
|
|
|
"organisation", sa.Column("request_to_go_live_notes", sa.Text(), nullable=True)
|
|
|
|
|
)
|
2019-05-10 11:47:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
2023-08-29 14:54:30 -07:00
|
|
|
op.drop_column("organisation", "request_to_go_live_notes")
|