mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
6 lines
137 B
SQL
6 lines
137 B
SQL
|
|
CREATE TRIGGER "MyTableName_Trig" AFTER INSERT OR DELETE OR UPDATE
|
|
ON "MyTableName" FOR EACH ROW EXECUTE PROCEDURE
|
|
"recordchange" ();
|
|
|