mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 00:41:35 -05:00
29 lines
565 B
Python
29 lines
565 B
Python
"""empty message
|
|
|
|
Revision ID: 0105_opg_letter_org
|
|
Revises: 0104_more_letter_orgs
|
|
Create Date: 2017-06-29 12:44:16.815039
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0105_opg_letter_org'
|
|
down_revision = '0104_more_letter_orgs'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
from flask import current_app
|
|
|
|
|
|
def upgrade():
|
|
op.execute("""
|
|
INSERT INTO dvla_organisation VALUES
|
|
('002', 'Office of the Public Guardian')
|
|
""")
|
|
|
|
|
|
def downgrade():
|
|
# data migration, no downloads
|
|
pass
|