From f6b8611b18348b2015c8b17f2b951214395fa612 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 16 May 2018 10:18:55 +0100 Subject: [PATCH] Add letter logos for TWFRS and Thames Valley Police --- .../versions/0190_another_letter_org.py | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 migrations/versions/0190_another_letter_org.py diff --git a/migrations/versions/0190_another_letter_org.py b/migrations/versions/0190_another_letter_org.py new file mode 100644 index 000000000..be2776750 --- /dev/null +++ b/migrations/versions/0190_another_letter_org.py @@ -0,0 +1,37 @@ +"""empty message + +Revision ID: 0190_another_letter_org +Revises: 0189_ft_billing_data_type +Create Date: 2017-06-29 12:44:16.815039 + +""" + +# revision identifiers, used by Alembic. +revision = '0190_another_letter_org' +down_revision = '0189_ft_billing_data_type' + +from alembic import op + + +NEW_ORGANISATIONS = [ + ('506', 'Tyne and Wear Fire and Rescue Service'), + ('507', 'Thames Valley Police'), +] + + +def upgrade(): + for numeric_id, name in NEW_ORGANISATIONS: + op.execute(""" + INSERT + INTO dvla_organisation + VALUES ('{}', '{}') + """.format(numeric_id, name)) + + +def downgrade(): + for numeric_id, _ in NEW_ORGANISATIONS: + op.execute(""" + DELETE + FROM dvla_organisation + WHERE id = '{}' + """.format(numeric_id))