BigW Consortium Gitlab

Commit b9fc5bf0 by Stan Hu Committed by Regis

Merge branch 'fix-issue-assignee-trigger' into 'master'

Check if OLD is set when migrating issue assignees Closes #32439 See merge request !11461
parent 962eb555
......@@ -47,7 +47,7 @@ class MigrateAssigneeToSeparateTable < ActiveRecord::Migration
RETURNS trigger AS
$BODY$
BEGIN
if OLD.assignee_id IS NOT NULL THEN
if OLD IS NOT NULL AND OLD.assignee_id IS NOT NULL THEN
DELETE FROM issue_assignees WHERE issue_id = OLD.id;
END IF;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment