mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
5 lines
137 B
SQL
5 lines
137 B
SQL
|
|
CREATE TRIGGER "MyTableName_Trig" AFTER INSERT OR DELETE OR UPDATE
|
|
ON "MyTableName" FOR EACH ROW EXECUTE PROCEDURE
|
|
"recordchange" ();
|
|
|