CREATE TABLE IF NOT EXISTS public.par_entrada ( filial integer NOT NULL, produto_cte integer NOT NULL, produto_servico integer NOT NULL, tipo_pagto_balanca integer NOT NULL, centro_custo_balanca integer NOT NULL, CONSTRAINT pk_par_entrada PRIMARY KEY (filial), CONSTRAINT fk_par_entrada_filial FOREIGN KEY (filial) REFERENCES public.bas_filial (codigo) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION ) TABLESPACE pg_default; ALTER TABLE IF EXISTS public.par_entrada OWNER to postgres;