diff --git a/migrations/versions/0047_ukvi_spelling.py b/migrations/versions/0047_ukvi_spelling.py new file mode 100644 index 000000000..359a257c6 --- /dev/null +++ b/migrations/versions/0047_ukvi_spelling.py @@ -0,0 +1,29 @@ +"""empty message + +Revision ID: 0047_ukvi_spelling +Revises: 0046_organisations_and_branding +Create Date: 2016-08-22 16:06:32.981723 + +""" + +# revision identifiers, used by Alembic. +revision = '0047_ukvi_spelling' +down_revision = '0046_organisations_and_branding' + +from alembic import op + + +def upgrade(): + op.execute(""" + UPDATE organisation + SET name = 'UK Visas & Immigration' + WHERE id = '9d25d02d-2915-4e98-874b-974e123e8536' + """) + + +def downgrade(): + op.execute(""" + UPDATE organisation + SET name = 'UK Visas and Immigration' + WHERE id = '9d25d02d-2915-4e98-874b-974e123e8536' + """)