Skip to content

Instantly share code, notes, and snippets.

@Samuyi
Created January 8, 2019 16:35
Show Gist options
  • Save Samuyi/63622e7f8482e8826348b82b2d217a95 to your computer and use it in GitHub Desktop.
Save Samuyi/63622e7f8482e8826348b82b2d217a95 to your computer and use it in GitHub Desktop.
postgresql trigger
CREATE TRIGGER passwd_trigger BEFORE INSERT OR UPDATE
ON passwd
FOR EACH ROW EXECUTE PROCEDURE passwd_func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment