Update migration file version number for email_branding update

This commit is contained in:
Pea Tyczynska
2018-07-31 18:01:58 +01:00
parent d8d94b431f
commit 4345771547

View File

@@ -1,16 +1,16 @@
"""
Revision ID: 0209_email_branding_update
Revises: 84c3b6eb16b3
Create Date: 2018-07-25 16:08:15.713656
Revision ID: 0211_email_branding_update
Revises: 0210_remove_monthly_billing
Create Date: 2018-07-31 18:00:20.457755
"""
from alembic import op
import sqlalchemy as sa
revision = '0209_email_branding_update'
down_revision = '84c3b6eb16b3'
revision = '0211_email_branding_update'
down_revision = '0210_remove_monthly_billing'
def upgrade():
@@ -20,7 +20,6 @@ def upgrade():
op.execute('UPDATE email_branding SET name = NULL')
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.execute('UPDATE email_branding SET name = text')