Files
notifications-api/migrations/versions/0105_opg_letter_org.py
2026-01-27 07:33:54 -08:00

29 lines
575 B
Python

"""empty message
Revision ID: 0105_opg_letter_org
Revises: 0103_add_historical_redact
Create Date: 2017-06-29 12:44:16.815039
"""
# revision identifiers, used by Alembic.
revision = "0105_opg_letter_org"
down_revision = "0103_add_historical_redact"
import sqlalchemy as sa
from alembic import op
from flask import current_app
from sqlalchemy.dialects import postgresql
def upgrade():
op.execute("""
INSERT INTO dvla_organisation VALUES
('002', 'Office of the Public Guardian')
""")
def downgrade():
# data migration, no downloads
pass