Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adityathebe committed Sep 26, 2023
1 parent a208982 commit 6fe467a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/021_notification.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ BEGIN
END
$$ LANGUAGE plpgsql;

CREATE OR REPLACE TRIGGER notification_update_enqueue
CREATE OR REPLACE TRIGGER handle_notifications_updates_deletes_trigger
AFTER UPDATE OR DELETE ON notifications
FOR EACH ROW
EXECUTE PROCEDURE handle_notifications_updates_deletes();
Expand All @@ -29,7 +29,7 @@ BEGIN
END
$$ LANGUAGE plpgsql;

CREATE OR REPLACE TRIGGER notification_update_enqueue
CREATE OR REPLACE TRIGGER reset_notification_error_before_update_trigger
BEFORE UPDATE ON notifications
FOR EACH ROW
EXECUTE PROCEDURE reset_notification_error_before_update();

0 comments on commit 6fe467a

Please sign in to comment.