Hi Folks:
I'm trying to figure out how to do the following.
I have my code formatter currently set to format like below:
CREATE OR REPLACE TRIGGER necropsies_trg
BEFORE INSERT
ON necropsies
REFERENCING NEW AS new OLD AS old
I am trying to get the formatter to place the BEFORE INSERT ON necropsies statement on one line like like the following:
CREATE OR REPLACE TRIGGER necropsies_trg
BEFORE INSERT ON necropsies
REFERENCING NEW AS new OLD AS old
FOR EACH ROW
Any idea what section in the Formatter section I would tweak to do that? I've spent an hour trying different things but nothing has worked so far.
Thanks,
Matthew