Files
notifications-api/migrations/versions/0116_another_letter_org.py
T

26 lines
468 B
Python
Raw Normal View History

2017-08-10 14:40:21 +01:00
"""empty message
2017-08-14 13:54:18 +01:00
Revision ID: 0116_another_letter_org
Revises: 0115_add_inbound_numbers
2017-08-10 14:40:21 +01:00
Create Date: 2017-06-29 12:44:16.815039
"""
# revision identifiers, used by Alembic.
2017-08-14 13:54:18 +01:00
revision = '0116_another_letter_org'
down_revision = '0115_add_inbound_numbers'
2017-08-10 14:40:21 +01:00
from alembic import op
def upgrade():
op.execute("""
INSERT INTO dvla_organisation VALUES
('005', 'Companies House')
""")
def downgrade():
# data migration, no downloads
pass