"""Sync commercial Revision ID: c9db5db1a8b8 Revises: 0a8fb6ce1c0f Create Date: 2019-06-05 18:44:42.085987 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'c9db5db1a8b8' down_revision = '0a8fb6ce1c0f' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### bind = op.get_bind() bind.execute(''' INSERT INTO "CampaignTypeDetailItem" (id, name, campaign_type_detail_id) VALUES (19, 'Commercial', 3) ''') # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### bind = op.get_bind() bind.execute('''DELETE FROM "CampaignTypeDetailItem" WHERE id=19''') # ### end Alembic commands ###