Hi,
(sorry I think I posted to the wrong forum)
I’d like to be able to document deferrable constraints in our DB schemas. I didn’t found how to do it with DB-VA 6.1. Is there an easy way to do that?
If not, can this be considered a feature request? I’m using PostgreSQL and the deferrable constraint should be 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!