DROP TRIGGER
Synopsis
Use the DROP TRIGGER statement to remove a trigger from the database.
Syntax
Semantics
RESTRICTis the default and it will throw an error if any objects depend on the trigger.CASCADEwill drop all objects that (transitively) depend on the trigger.
Examples
DROP TRIGGER update_moddatetime ON posts;