Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
blob: 97150d3aa798934718ed59c41c262bfc8b62ec7a (plain)
1
2
3
4
5
6
7
-- Adjust this setting to control where the objects get created.
SET search_path = public;

CREATE TRIGGER "MyTableName_Trig" 
AFTER INSERT OR DELETE OR UPDATE ON "MyTableName"
FOR EACH ROW EXECUTE PROCEDURE "recordchange" ();