Add letter logos for TWFRS and Thames Valley Police

This commit is contained in:
Chris Hill-Scott
2018-05-16 10:18:55 +01:00
parent e3179dee99
commit f6b8611b18

View File

@@ -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))