Merge pull request #1171 from alphagov/ch-letter-logo

Add letter organisation for Companies House
This commit is contained in:
Chris Hill-Scott
2017-08-14 13:48:12 +01:00
committed by GitHub

View File

@@ -0,0 +1,25 @@
"""empty message
Revision ID: 0114_another_letter_org
Revises: 0113_job_created_by_nullable
Create Date: 2017-06-29 12:44:16.815039
"""
# revision identifiers, used by Alembic.
revision = '0114_another_letter_org'
down_revision = '0113_job_created_by_nullable'
from alembic import op
def upgrade():
op.execute("""
INSERT INTO dvla_organisation VALUES
('005', 'Companies House')
""")
def downgrade():
# data migration, no downloads
pass