This file is indexed.

/usr/share/gforge/db/20040826.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
26
27
28
CREATE SEQUENCE "artifact_group_selection_box_list_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_group_selection_box_list" (
	"id" integer DEFAULT nextval('"artifact_group_selection_box_list_id_seq"'::text)NOT NULL,
	"group_artifact_id" integer NOT NULL,
	"selection_box_name" text NOT NULL,
	Constraint "artifact_group_selection_box_list_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_group_selection_box_list_id_seq"',100,true);
	
CREATE SEQUENCE "artifact_group_selection_box_options_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_group_selection_box_options" (
	"id" integer DEFAULT nextval('"artifact_group_selection_box_options_id_seq"'::text)NOT NULL,
	"artifact_box_id" integer NOT NULL,
	"box_options_name" text NOT NULL,
	Constraint "artifact_group_selection_box_options_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_group_selection_box_options_id_seq"',100,true);


CREATE SEQUENCE "artifact_extra_field_data_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_extra_field_data" (
	"id" integer DEFAULT nextval('"artifact_extra_field_data_id_seq"'::text)NOT NULL,
	"artifact_id" integer NOT NULL,
	"choice_id" integer NOT NULL,
	Constraint "artifact_extra_field_data_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_extra_field_data_id_seq"',100,true);