CREATE TABLE IF NOT EXISTS public.cli_cliente_moeda_venda ( filial integer NOT NULL, cliente integer NOT NULL, moeda_venda integer NOT NULL, CONSTRAINT pk_cli_cliente_moeda PRIMARY KEY (filial, cliente) ) WITH ( OIDS = FALSE ) ;