Skip to content

Instantly share code, notes, and snippets.

View sguldemond's full-sized avatar
🍵
could use a cup of green tea

Stan Syfert sguldemond

🍵
could use a cup of green tea
  • West (www.west.nl)
  • The Netherlands
View GitHub Profile
@colophonemes
colophonemes / create_triggers
Last active February 17, 2024 15:15
Postgres TRIGGER to call NOTIFY with a JSON payload
CREATE TRIGGER person_notify AFTER INSERT OR UPDATE OR DELETE ON income
FOR EACH ROW EXECUTE PROCEDURE notify_trigger(
'id',
'email',
'username'
);
CREATE TRIGGER income_notify AFTER INSERT OR UPDATE OR DELETE ON income
FOR EACH ROW EXECUTE PROCEDURE notify_trigger(
'id',