ALTER TRIGGER — change the definition of a trigger
ALTER TRIGGER name ON table RENAME TO newname
ALTER TRIGGER changes properties of an existing trigger. The RENAME clause changes the name of the given trigger without otherwise changing the trigger definition.
You must own the table on which the trigger acts to be allowed to change its properties.