This file is indexed.

/usr/share/gforge/db/20120609_add_use_activity_in_groups.sql is in gforge-db-postgresql 5.3.2+20141104-3+deb8u3.

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

The actual contents of the file can be viewed below.

1
2
3
4
ALTER TABLE "groups" ADD COLUMN "use_activity" integer;
UPDATE "groups" SET use_activity=1;
ALTER TABLE "groups" ALTER COLUMN "use_activity" SET NOT NULL;
ALTER TABLE "groups" ALTER COLUMN "use_activity" SET DEFAULT 1;