mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 01:41:05 -05:00
reformat
This commit is contained in:
@@ -9,13 +9,15 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
revision = '0290_org_go_live_notes'
|
||||
down_revision = '0289_precompiled_for_all'
|
||||
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))
|
||||
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')
|
||||
op.drop_column("organisation", "request_to_go_live_notes")
|
||||
|
||||
Reference in New Issue
Block a user