I want to \"create or replace\" a trigger for a postgres table. However, there is not such sql expression.
I see that I can do a \"DROP TRIGGER IF EXISTS\"
DROP TRIGGER IF EXISTS
No way to create or replace a trigger but can do this way
DROP TRIGGER IF EXISTS yourtrigger_name on "yourschemaname"."yourtablename";