This file is indexed.

/usr/share/php/data/Horde_Cache/migration/1_horde_cache_base_tables.php is in php-horde-cache 2.5.4-1.

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
<?php
/**
 * @category Horde
 * @internal
 * @package  Cache
 */
class HordeCacheBaseTables extends Horde_Db_Migration_Base
{
    public function up()
    {
        if (!in_array('horde_cache', $this->tables())) {
            $t = $this->createTable('horde_cache', array('autoincrementKey' => array('cache_id')));
            $t->column('cache_id', 'string', array('limit' => 32, 'null' => false));
            $t->column('cache_timestamp', 'bigint', array('null' => false));
            $t->column('cache_expiration', 'bigint', array('null' => false));
            $t->column('cache_data', 'binary');
            $t->end();
        }
    }

    public function down()
    {
        $this->dropTable('horde_cache');
    }
}