Hello, I'm having some problems in the diagrammer when working against a postgresql15 server.
There seems to problems with table referencing and it is generating bad sql when hitting the Apply Changes button. This is in studio 13.10
I've tried to change a primary key and the sql references the wrong table. I'm working on ProductCost and the sql references BCOrderTest tables:
BEGIN;
-- CHANGE "PRIMARY KEY" OF "TABLE "ProductCost" ----------------
ALTER TABLE "public"."ProductCost" DROP CONSTRAINT IF EXISTS "BCOrderTest_pkey";
ALTER TABLE "public"."ProductCost" ADD CONSTRAINT "BCOrderTest_pkey" PRIMARY KEY( "ProductId", "CostNum" );
-- -------------------------------------------------------------
COMMIT;
screenshot attached