Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Postgres94.php « database « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc3ffd0e8481d1563c69f5c71ac4a2b4ad65f26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * PHPPgAdmin v6.0.0-RC7
 */

namespace PHPPgAdmin\Database;

/**
 * @file
 * PostgreSQL 9.4 support
 */
class Postgres94 extends Postgres95
{
    public $typIndexes    = ['BTREE', 'RTREE', 'GIST', 'GIN', 'HASH', 'SP-GIST'];
    public $major_version = 9.4;
}