PostgreSQL - Triggers in PostgreSQL
You have three BEFORE DELETE triggers on table
customers: clean_up, archive, and notify. You want archive to run first, then clean_up, then notify. How should you rename the triggers to ensure this execution order?