Skip to content

Instantly share code, notes, and snippets.

@geobabbler
Last active March 7, 2017 20:37
Embed
What would you like to do?
CREATE TRIGGER sample_table_trigger
AFTER INSERT
ON public.simple_table
FOR EACH ROW
EXECUTE PROCEDURE public.sample_notify();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment