"""Youtube Revision ID: 208acc6a818a Revises: bb2110517a06 Create Date: 2019-06-10 15:40:10.480946 """ from alembic import op # revision identifiers, used by Alembic. revision = '208acc6a818a' down_revision = 'bb2110517a06' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### bind = op.get_bind() bind.execute('''UPDATE "CampaignTypeDetailItem" SET name='YouTube' WHERE id=13''') # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### bind = op.get_bind() bind.execute('''UPDATE "CampaignTypeDetailItem" SET name='Youtube' WHERE id=13''') # ### end Alembic commands ###