This file is indexed.

/usr/share/gforge/db/20101029-docman-monitoring.sql is in gforge-db-postgresql 5.1.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
CREATE SEQUENCE docdata_monitored_docman_pk_seq
    START WITH 1
    INCREMENT BY 1
    MAXVALUE 2147483647
    NO MINVALUE
    CACHE 1;

CREATE TABLE docdata_monitored_docman (
    monitor_id integer DEFAULT nextval('docdata_monitored_docman_pk_seq'::text) NOT NULL,
    doc_id integer DEFAULT 0 NOT NULL,
    user_id integer DEFAULT 0 NOT NULL
);

CREATE SEQUENCE docgroup_monitored_docman_pk_seq
    START WITH 1
    INCREMENT BY 1
    MAXVALUE 2147483647
    NO MINVALUE
    CACHE 1;

CREATE TABLE docgroup_monitored_docman (
    monitor_id integer DEFAULT nextval('docgroup_monitored_docman_pk_seq'::text) NOT NULL,
    docgroup_id integer DEFAULT 0 NOT NULL,
    user_id integer DEFAULT 0 NOT NULL
);