This file is indexed.

/usr/share/php/data/Horde_Queue/migration/1_horde_queue_base_tables.php is in php-horde-queue 1.1.1-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
<?php
class HordeQueueBaseTables extends Horde_Db_Migration_Base
{
    public function up()
    {
        $t = $this->createTable('horde_queue_tasks', array('autoincrementKey' => 'task_id'));
        $t->column('task_queue', 'string', array('limit' => 255, 'null' => false));
        $t->column('task_fields', 'text', array('null' => false));
        $t->end();
    }

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