CREATE TABLE public.pla_mapa_pre_preparo ( filial integer NOT NULL, produto integer NOT NULL, data_inicial date NOT NULL, data_final date NOT NULL, tipo_corte integer NOT NULL, fator_catering numeric(18,6) NOT NULL, centro_custo integer NOT NULL, qtd_bruta numeric(18,6) NOT NULL, qtd_processada numeric(18,6) NOT NULL, qtd_cozida numeric(18,6) NOT NULL, observacao character varying(100), CONSTRAINT pk_pla_mapa_pre_preparo PRIMARY KEY (filial, produto, data_inicial, data_final, tipo_corte, fator_catering, centro_custo) ) TABLESPACE pg_default; ALTER TABLE public.pla_mapa_pre_preparo OWNER to postgres;