CREATE TABLE public.rlc_troca_origem_x_destino ( filial_origem integer NOT NULL, sequencia_origem integer NOT NULL, filial_destino integer NOT NULL, sequencia_destino integer NOT NULL, terminal_ip character varying(20) NOT NULL, usuario integer NOT NULL, data date NOT NULL, hora time without time zone NOT NULL, CONSTRAINT pk_rlc_troca_origem_x_destino PRIMARY KEY (filial_origem, sequencia_origem, filial_destino, sequencia_destino) ) TABLESPACE pg_default; ALTER TABLE IF EXISTS public.rlc_troca_origem_x_destino OWNER to postgres;