-- -- PostgreSQL database dump -- -- Dumped from database version 9.4.5 -- Dumped by pg_dump version 9.4.5 -- Started on 2016-02-22 08:40:56 CET SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; -- -- TOC entry 176 (class 3079 OID 11873) -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- TOC entry 2045 (class 0 OID 0) -- Dependencies: 176 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; -- -- TOC entry 191 (class 1255 OID 16437) -- Name: str_begins_with(text, text); Type: FUNCTION; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE FUNCTION str_begins_with(text, text) RETURNS boolean LANGUAGE sql IMMUTABLE AS $_$SELECT $1 LIKE regexp_replace($2||'', '(\%_)', '\\1')||'%'; $_$; ALTER FUNCTION public.str_begins_with(text, text) OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 189 (class 1255 OID 16386) -- Name: str_match_partial(text, text, boolean); Type: FUNCTION; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE FUNCTION str_match_partial(text, text, boolean) RETURNS boolean LANGUAGE sql IMMUTABLE AS $_$SELECT CASE WHEN $3 THEN LOWER($1) LIKE LOWER('%'||regexp_replace($2, '(\%_)', '\\1')||'%') ELSE $1 LIKE '%'||regexp_replace($2, '(\%_)', '\\1')||'%' END; $_$; ALTER FUNCTION public.str_match_partial(text, text, boolean) OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 190 (class 1255 OID 16387) -- Name: upcase_hash(); Type: FUNCTION; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE FUNCTION upcase_hash() RETURNS trigger LANGUAGE plpgsql IMMUTABLE AS $$ BEGIN NEW."hash" = UPPER(NEW."hash"); RETURN NEW; END; $$; ALTER FUNCTION public.upcase_hash() OWNER TO @DB_OWNER_NAME@; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 172 (class 1259 OID 16388) -- Name: files; Type: TABLE; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- CREATE TABLE files ( id bigint NOT NULL, path text NOT NULL, level smallint NOT NULL, group_id integer NOT NULL, is_directory boolean NOT NULL, is_symlink boolean NOT NULL, size bigint, hash character(48) NOT NULL, is_hash_valid boolean DEFAULT true NOT NULL, access_time timestamp with time zone, modify_time timestamp with time zone, unreadable boolean NOT NULL, mimetype character varying NOT NULL, charset character varying NOT NULL, CONSTRAINT chk_files_dirsize_zero CHECK (((is_directory = false) OR (size = 0))), CONSTRAINT chk_hash_0 CHECK ((((NOT unreadable) AND is_hash_valid) OR ((NOT is_hash_valid) AND (hash ~ '^0+$'::text)))) ); ALTER TABLE files OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 2046 (class 0 OID 0) -- Dependencies: 172 -- Name: CONSTRAINT chk_hash_0 ON files; Type: COMMENT; Schema: public; Owner: @DB_OWNER_NAME@ -- COMMENT ON CONSTRAINT chk_hash_0 ON files IS 'Make sure hash is 0 if unreadable or not valid are set.'; -- -- TOC entry 173 (class 1259 OID 16397) -- Name: files_id_seq; Type: SEQUENCE; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE SEQUENCE files_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE files_id_seq OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 2047 (class 0 OID 0) -- Dependencies: 173 -- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: @DB_OWNER_NAME@ -- ALTER SEQUENCE files_id_seq OWNED BY files.id; -- -- TOC entry 174 (class 1259 OID 16399) -- Name: sets; Type: TABLE; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- CREATE TABLE sets ( id integer NOT NULL, "desc" text NOT NULL, type character(1) DEFAULT 'D'::bpchar NOT NULL, disk_number integer DEFAULT 0 NOT NULL, creation timestamp with time zone DEFAULT now() NOT NULL, app_name character varying NOT NULL, content_type character(1) DEFAULT 'G'::bpchar NOT NULL, CONSTRAINT chk_sets_type CHECK (((((((((type = 'C'::bpchar) OR (type = 'D'::bpchar)) OR (type = 'V'::bpchar)) OR (type = 'B'::bpchar)) OR (type = 'F'::bpchar)) OR (type = 'H'::bpchar)) OR (type = 'Z'::bpchar)) OR (type = 'O'::bpchar))) ); ALTER TABLE sets OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 2048 (class 0 OID 0) -- Dependencies: 174 -- Name: COLUMN sets.type; Type: COMMENT; Schema: public; Owner: @DB_OWNER_NAME@ -- COMMENT ON COLUMN sets.type IS 'D = directory V = DVD B = BluRay F = Floppy Disk H = Hard Disk Z = Iomega Zip O = Other'; -- -- TOC entry 175 (class 1259 OID 16409) -- Name: sets_id_seq; Type: SEQUENCE; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE SEQUENCE sets_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sets_id_seq OWNER TO @DB_OWNER_NAME@; -- -- TOC entry 2049 (class 0 OID 0) -- Dependencies: 175 -- Name: sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: @DB_OWNER_NAME@ -- ALTER SEQUENCE sets_id_seq OWNED BY sets.id; -- -- TOC entry 1909 (class 2604 OID 16411) -- Name: id; Type: DEFAULT; Schema: public; Owner: @DB_OWNER_NAME@ -- ALTER TABLE ONLY files ALTER COLUMN id SET DEFAULT nextval('files_id_seq'::regclass); -- -- TOC entry 1915 (class 2604 OID 16412) -- Name: id; Type: DEFAULT; Schema: public; Owner: @DB_OWNER_NAME@ -- ALTER TABLE ONLY sets ALTER COLUMN id SET DEFAULT nextval('sets_id_seq'::regclass); -- -- TOC entry 1922 (class 2606 OID 16414) -- Name: pk_files_id; Type: CONSTRAINT; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- ALTER TABLE ONLY files ADD CONSTRAINT pk_files_id PRIMARY KEY (id); -- -- TOC entry 1926 (class 2606 OID 16416) -- Name: pk_sets_id; Type: CONSTRAINT; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- ALTER TABLE ONLY sets ADD CONSTRAINT pk_sets_id PRIMARY KEY (id); -- -- TOC entry 1924 (class 2606 OID 16418) -- Name: uniq_item; Type: CONSTRAINT; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- ALTER TABLE ONLY files ADD CONSTRAINT uniq_item UNIQUE (path, group_id); -- -- TOC entry 1918 (class 1259 OID 16419) -- Name: fki_files_sets; Type: INDEX; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- CREATE INDEX fki_files_sets ON files USING btree (group_id); -- -- TOC entry 1919 (class 1259 OID 16420) -- Name: idx_mimetype; Type: INDEX; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- CREATE INDEX idx_mimetype ON files USING btree (mimetype, charset); -- -- TOC entry 1920 (class 1259 OID 16421) -- Name: idx_paths; Type: INDEX; Schema: public; Owner: @DB_OWNER_NAME@; Tablespace: -- CREATE INDEX idx_paths ON files USING btree (path); -- -- TOC entry 1928 (class 2620 OID 16422) -- Name: triggerupcasehash; Type: TRIGGER; Schema: public; Owner: @DB_OWNER_NAME@ -- CREATE TRIGGER triggerupcasehash BEFORE INSERT OR UPDATE ON files FOR EACH ROW EXECUTE PROCEDURE upcase_hash(); -- -- TOC entry 1927 (class 2606 OID 16423) -- Name: fk_files_sets; Type: FK CONSTRAINT; Schema: public; Owner: @DB_OWNER_NAME@ -- ALTER TABLE ONLY files ADD CONSTRAINT fk_files_sets FOREIGN KEY (group_id) REFERENCES sets(id); -- -- TOC entry 2044 (class 0 OID 0) -- Dependencies: 6 -- Name: public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; -- Completed on 2016-02-22 08:40:57 CET -- -- PostgreSQL database dump complete --