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
|
|
|
|
|
|
|
|
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(f"update {table_name} set {col}='{val}' where {select_by_col} = '{select_by_val}'")
|
|
|
|
|
|
|
|
|
|
table_name = 'services_history'
|
|
|
|
|
op.execute(f"update {table_name} set {col}='{val}' where {select_by_col} = '{select_by_val}'")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
|
|
|
|
pass
|
|
|
|
|
### end Alembic commands ###
|