disable cache persistence & env updates

This commit is contained in:
Jim Moffet
2022-06-13 21:42:36 -07:00
parent e88e36712f
commit 79ba6cc1d1
8 changed files with 92 additions and 8 deletions

View File

@@ -16,8 +16,8 @@ import sqlalchemy as sa
service_id = 'd6aa2c68-a2d9-4437-ab19-3ae8eb202553'
def upgrade():
op.get_bind()
op.execute("update services set email_from = 'gov.uk.notify' where id = '{}'".format(service_id))
op.execute("update services_history set email_from = 'gov.uk.notify' where id = '{}'".format(service_id))
op.execute("update services set email_from = 'testsender' where id = '{}'".format(service_id))
op.execute("update services_history set email_from = 'testsender' where id = '{}'".format(service_id))
def downgrade():