Files
notifications-api/migrations/versions/0028_fix_reg_template_history.py
Kenneth Kehl 7276ed0e5a more files
2023-07-18 10:27:47 -07:00

53 lines
1.7 KiB
Python

"""empty message
Revision ID: 0028_fix_reg_template_history
Revises: 0027_update_provider_rates
Create Date: 2016-06-13 11:04:15.888017
"""
# revision identifiers, used by Alembic.
from datetime import datetime
from sqlalchemy import text
revision = '0028_fix_reg_template_history'
down_revision = '0027_update_provider_rates'
from alembic import op
import sqlalchemy as sa
service_id = 'd6aa2c68-a2d9-4437-ab19-3ae8eb202553'
user_id= '6af522d0-2915-4e52-83a3-3690455a5fe6'
def upgrade():
op.get_bind()
op.execute("delete from templates_history where name = 'Notify email verification code'")
template_history_insert = """INSERT INTO templates_history (id, name, template_type, created_at,
content, archived, service_id,
subject, created_by_id, version)
VALUES (:id, :name, :type, :time_now, :content, False, :service_id, :subject, :user_id, 1)
"""
email_verification_content = \
"""Hi ((name)),\n\nTo complete your registration for GOV.UK Notify please click the link below\n\n((url))"""
input_params = {
"id": 'ece42649-22a8-4d06-b87f-d52d5d3f0a27',
"name": 'Notify email verification code',
"type": "email",
"time_now": datetime.utcnow(),
"content": email_verification_content,
"service_id": service_id,
"subject": 'Confirm GOV.UK Notify registration',
"user_id": user_id
}
conn = op.get_bind()
conn.execute(text(template_history_insert), input_params)
def downgrade():
### commands auto generated by Alembic - please adjust! ###
pass
### end Alembic commands ###