diff --git a/coderd/database/migrations/000235_fix_notifications_group.down.sql b/coderd/database/migrations/000235_fix_notifications_group.down.sql new file mode 100644 index 0000000000000..67d0619e23e30 --- /dev/null +++ b/coderd/database/migrations/000235_fix_notifications_group.down.sql @@ -0,0 +1,5 @@ +UPDATE notification_templates +SET + "group" = E'Workspace Events' +WHERE + id = '4e19c0ac-94e1-4532-9515-d1801aa283b2'; diff --git a/coderd/database/migrations/000235_fix_notifications_group.up.sql b/coderd/database/migrations/000235_fix_notifications_group.up.sql new file mode 100644 index 0000000000000..b55962cc8bfb9 --- /dev/null +++ b/coderd/database/migrations/000235_fix_notifications_group.up.sql @@ -0,0 +1,5 @@ +UPDATE notification_templates +SET + "group" = E'User Events' +WHERE + id = '4e19c0ac-94e1-4532-9515-d1801aa283b2';