This file is indexed.

/usr/share/php/data/Horde_Service_Weather/migration/2_horde_service_weather_airports_change.php is in php-horde-service-weather 2.5.4-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
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Migration to move from retired NOAA dataset to the station list provided by
 * https://github.com/datasets/airport-codes.
 *
 * NOTE: This only generates the schema. To populate data, one must run
 * the horde-service-weather-metar-database script.
 */
class HordeServiceWeatherAirportsChange extends Horde_Db_Migration_Base
{
    protected $_fileContents;

    public function up()
    {
        // Get rid of the old data.
        $this->down();
        $t = $this->createTable('horde_metar_airports', array('autoincrementKey' => array('id')));
        $t->column('id', 'integer');
        $t->column('icao', 'string', array('limit' => 4));
        $t->column('name', 'string', array('limit' => 80));
        $t->column('state', 'string', array('limit' => 4));
        $t->column('country', 'string', array('limit' => 50));
        $t->column('municipality', 'string', array('limit' => 80));
        $t->column('latitude', 'float', array('default' => 0));
        $t->column('longitude', 'float', array('default' => 0));
        $t->column('elevation', 'float', array('default' => 0));
        $t->end();
    }

    public function down()
    {
        $tableList = $this->tables();
        if (in_array('horde_metar_airports', $tableList)) {
            $this->dropTable('horde_metar_airports');
        }
    }

}