This file is indexed.

/usr/share/php/data/Horde_Auth/migration/1_horde_auth_base_tables.php is in php-horde-auth 2.2.2-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
19
20
21
22
23
24
25
26
<?php
/**
 */
class HordeAuthBaseTables extends Horde_Db_Migration_Base
{
    /**
     */
    public function up()
    {
        if (!in_array('horde_users', $this->tables())) {
            $t = $this->createTable('horde_users', array('autoincrementKey' => array('user_uid')));
            $t->column('user_uid', 'string', array('limit' => 255, 'null' => false));
            $t->column('user_pass', 'string', array('limit' => 255, 'null' => false));
            $t->column('user_soft_expiration_date', 'integer');
            $t->column('user_hard_expiration_date', 'integer');
            $t->end();
        }
    }

    /**
     */
    public function down()
    {
        $this->dropTable('horde_users');
    }
}