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

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

/**
 * PHPPgAdmin v6.0.0-RC8
 */

namespace PHPPgAdmin\Database;

/**
 * @file
 * PostgreSQL 9.0 support
 *
 * Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $
 *
 * @package PHPPgAdmin
 */
class Postgres90 extends Postgres91
{
    public $major_version = 9.0;
}