This file is indexed.

/usr/share/gforge/db/20051103_transiciel_motscle_document.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
--- Modification de la base gforge pour permettre la recherche dans le contenu des documents stockés
--- Fabio Bertagnin - Transiciel Technologies
--- fbertagnin@mail.transiciel.com
--- 03/11/2005

ALTER TABLE doc_data ADD COLUMN data_words TEXT;
ALTER TABLE doc_data ALTER data_words SET DEFAULT '';
UPDATE doc_data SET data_words = '';
ALTER TABLE doc_data ALTER data_words SET NOT NULL;