Hi,
I’d like to specify in our DB schemas that some constraints (mainly foreign key contraints) are deferrable. I’ve not found how to do that in DB-VA 6.1. Is there a way to do that?
If not, can it be considered a feature request? We’d like to use it with PostgreSQL DDL code generation and for example to have a constraints being defined as:
ALTER TABLE "Customer_Contract" ADD CONSTRAINT "FKCustomer_Contract" FOREIGN KEY ("ContractId") REFERENCES "Contract" ("Id") ON UPDATE Cascade ON DELETE Cascade DEFERRABLE INITIALLY DEFERRED;
Thanks!