A while ago I've created a trigger in Postgresql, update_user, which sets the update_date to now()
for table users. Now I want to drop this trigger.
The following queries don't work:
drop trigger update_user;
drop trigger update_user on users;
I get the following error back:
ERROR: syntax error at or near ";"
How can I drop this trigger?