mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
Add letter organisation for Companies House
Depends on: - [ ] https://github.com/alphagov/notifications-template-preview/pull/37
This commit is contained in:
25
migrations/versions/0114_another_letter_org.py
Normal file
25
migrations/versions/0114_another_letter_org.py
Normal 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
|
||||||
Reference in New Issue
Block a user