Files
notifications-api/migrations/versions/0375_fix_service_name.py

37 lines
916 B
Python
Raw Normal View History

2022-08-29 19:10:56 -07:00
"""empty message
Revision ID: 0375_fix_service_name
Revises: 0374_fix_reg_template_history
Create Date: 2022-08-29 11:04:15.888017
"""
revision = '0375_fix_service_name'
down_revision = '0374_fix_reg_template_history'
from alembic import op
2022-10-03 17:16:59 -07:00
from flask import current_app
2022-08-29 19:10:56 -07:00
2022-10-03 17:16:59 -07:00
service_id = current_app.config['NOTIFY_SERVICE_ID']
2022-08-29 19:10:56 -07:00
2022-08-29 19:10:56 -07:00
def upgrade():
op.get_bind()
# modify name of default service user in services
# table_name = 'services'
# col = 'name'
# val = 'US Notify'
# select_by_col = 'id'
# select_by_val = service_id
op.execute("update services set name='US Notify' where id = '{}'".format(service_id))
2022-08-29 19:10:56 -07:00
# table_name = 'services_history'
op.execute("update services_history set name='US Notify' where id = '{}'".format(service_id))
2022-08-29 19:10:56 -07:00
def downgrade():
### commands auto generated by Alembic - please adjust! ###
pass
### end Alembic commands ###