diff --git a/coderd/database/migrations/000234_fix_notifications_user_created.down.sql b/coderd/database/migrations/000234_fix_notifications_user_created.down.sql new file mode 100644 index 0000000000000..526b9aef53e5a --- /dev/null +++ b/coderd/database/migrations/000234_fix_notifications_user_created.down.sql @@ -0,0 +1,5 @@ +UPDATE notification_templates +SET + body_template = E'Hi {{.UserName}},\n\New user account **{{.Labels.created_account_name}}** has been created.' +WHERE + id = '4e19c0ac-94e1-4532-9515-d1801aa283b2'; diff --git a/coderd/database/migrations/000234_fix_notifications_user_created.up.sql b/coderd/database/migrations/000234_fix_notifications_user_created.up.sql new file mode 100644 index 0000000000000..5fb59dbd2ecdf --- /dev/null +++ b/coderd/database/migrations/000234_fix_notifications_user_created.up.sql @@ -0,0 +1,5 @@ +UPDATE notification_templates +SET + body_template = E'Hi {{.UserName}},\n\nNew user account **{{.Labels.created_account_name}}** has been created.' +WHERE + id = '4e19c0ac-94e1-4532-9515-d1801aa283b2';