This file is indexed.

/usr/share/gforge/db/20100330-add-system-event.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
CREATE SEQUENCE system_event_pk_seq
    START WITH 1
    INCREMENT BY 1
    MAXVALUE 2147483647
    NO MINVALUE
    CACHE 1;



CREATE TABLE system_event (
    id integer DEFAULT nextval('system_event_pk_seq'::text) NOT NULL,
    type character varying(16),
    parameters text,
    priority integer DEFAULT 0 NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    log text,
    create_date integer DEFAULT 0,
    process_date integer DEFAULT 0,
    end_date integer DEFAULT 0
);