This file is indexed.

/usr/share/php/data/Horde_Perms/migration/3_horde_perms_upgrade_parent_null.php is in php-horde-perms 2.1.7-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
<?php
class HordePermsUpgradeParentNull extends Horde_Db_Migration_Base
{
    public function up()
    {
        $this->changeColumn('horde_perms', 'perm_parents', 'string', array('limit' => 255, 'null' => true));
    }

    public function down()
    {
         $this->changeColumn('horde_perms', 'perm_parents', 'string', array('limit' => 255, 'null' => false));
    }

}