This file is indexed.

/usr/share/gforge/db/20051003.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
ALTER TABLE plugin_cvstracker_data_master ADD COLUMN cvs_date_int int;
UPDATE plugin_cvstracker_data_master SET cvs_date_int=extract(epoch from cvs_date);
ALTER TABLE plugin_cvstracker_data_master DROP COLUMN cvs_date;
ALTER TABLE plugin_cvstracker_data_master RENAME COLUMN cvs_date_int TO cvs_date;
ALTER TABLE plugin_cvstracker_data_master ALTER COLUMN cvs_date SET NOT NULL;