By default TOAD seems to generate DDL for foreign key relationships, with this syntax:
alter table XX
add foreign key (colA)
references table ZZ (colB)
But, I want to be able to explicitly NAME the FK constraint, hopefully using the name I’ve give n the relationship in the model! Something like
alter table XX
add constraint XX_good_name
foreig n key (colA)
references table ZZ (colB)
Is it possible to configure the SQL generation tool to do that?
thanks in advance