mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
> The logos are now ready to go on DVLA side- so far we've got: > 001 = HM Government > 002 = OPG > 003 = DWP > 004 = GEO
29 lines
630 B
Python
29 lines
630 B
Python
"""empty message
|
|
|
|
Revision ID: 0104_more_letter_orgs
|
|
Revises: 0103_add_historical_redact
|
|
Create Date: 2017-06-29 12:44:16.815039
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0104_more_letter_orgs'
|
|
down_revision = '0103_add_historical_redact'
|
|
|
|
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
|
|
('003', 'Department for Work and Pensions'),
|
|
('004', 'Government Equalities Office')
|
|
""")
|
|
|
|
|
|
def downgrade():
|
|
# data migration, no downloads
|
|
pass
|