DROP TABLE public.nfs_nota_fiscal_eletronica_recibo_envio; CREATE TABLE public.nfs_nota_fiscal_eletronica_recibo_envio ( sequencia integer NOT NULL, nfs_filial integer NOT NULL, nfs_nota integer NOT NULL, nfs_serie character varying(6) NOT NULL, data date NOT NULL, hora time without time zone NOT NULL, usuario integer NOT NULL, recibo character varying NOT NULL, xml_recibo xml, cstat integer NOT NULL, xml_nota xml, CONSTRAINT pk_nfs_nota_fiscal_eletronica_recibo_envio PRIMARY KEY (sequencia) ) WITH ( OIDS=FALSE ); ALTER TABLE public.nfs_nota_fiscal_eletronica_recibo_envio OWNER TO postgres;