mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-16 02:02:13 -05:00
More migrations got merged in between me making 0114 and merging the PR that contained 0114. If we named the files as just 0114.py then this would get flagged as a merge conflict…
26 lines
468 B
Python
26 lines
468 B
Python
"""empty message
|
|
|
|
Revision ID: 0116_another_letter_org
|
|
Revises: 0115_add_inbound_numbers
|
|
Create Date: 2017-06-29 12:44:16.815039
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0116_another_letter_org'
|
|
down_revision = '0115_add_inbound_numbers'
|
|
|
|
from alembic import op
|
|
|
|
|
|
def upgrade():
|
|
op.execute("""
|
|
INSERT INTO dvla_organisation VALUES
|
|
('005', 'Companies House')
|
|
""")
|
|
|
|
|
|
def downgrade():
|
|
# data migration, no downloads
|
|
pass
|