CREATE TABLE public.filelists (
pkg_id integer NOT NULL,
- name text NOT NULL,
+ path text NOT NULL,
size bigint NOT NULL,
- hash_sha512 text,
type integer NOT NULL,
- config boolean NOT NULL,
+ config boolean DEFAULT false NOT NULL,
mode integer NOT NULL,
"user" text NOT NULL,
"group" text NOT NULL,
+ capabilities text,
+ ctime timestamp without time zone NOT NULL,
mtime timestamp without time zone NOT NULL,
- capabilities text
+ digest_sha512 bytea,
+ digest_sha256 bytea
);
--
--- Name: filelists_name; Type: INDEX; Schema: public; Owner: pakfire
+-- Name: filelists_path; Type: INDEX; Schema: public; Owner: pakfire
--
-CREATE INDEX filelists_name ON public.filelists USING btree (name);
+CREATE INDEX filelists_path ON public.filelists USING btree (path);
--