Sort of unclear, but if you mean you are deleting an event row from the event table and you want to delete all rows in tables with foreign keys on event table that have that rows id, then you use cascade delete on each of those foreign keys.
event_id integer REFERENCES event ON DELETE CASCADE