This file is indexed.

/usr/share/php/data/Horde_Alarm/migration/2_horde_alarms_add_instanceid.php is in php-horde-alarm 2.2.10-1ubuntu1.

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
<?php
class HordeAlarmsAddInstanceId extends Horde_Db_Migration_Base
{
    public function up()
    {
        $this->addColumn(
            'horde_alarms',
            'alarm_instanceid',
            'string',
            array('limit' => 255));
    }

    public function down()
    {
        $this->removeColumn('horde_alarms', 'alarm_instanceid');
    }

}