-- Table: public.mkt_evo_imagem_anuncio -- DROP TABLE IF EXISTS public.mkt_evo_imagem_anuncio; CREATE TABLE IF NOT EXISTS public.mkt_evo_imagem_anuncio ( sequencia integer NOT NULL, filial integer NOT NULL, descricao character varying COLLATE pg_catalog."default" NOT NULL, data_inicial date NOT NULL, data_final date NOT NULL, CONSTRAINT pk_mkt_evo_imagem_anuncio PRIMARY KEY (sequencia) ) TABLESPACE pg_default; ALTER TABLE IF EXISTS public.mkt_evo_imagem_anuncio OWNER to postgres; -- Table: public.mkt_evo_imagem_anuncio_item -- DROP TABLE IF EXISTS public.mkt_evo_imagem_anuncio_item; CREATE TABLE IF NOT EXISTS public.mkt_evo_imagem_anuncio_item ( sequencia integer NOT NULL, item integer NOT NULL, imagem oid, CONSTRAINT pk_mkt_evo_imagem_anuncio_item PRIMARY KEY (sequencia, item) ) TABLESPACE pg_default; ALTER TABLE IF EXISTS public.mkt_evo_imagem_anuncio_item OWNER to postgres;