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

Postgres11.php « database « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6ab4cf66160b7ec61371c1e157f286e79f3487b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 * PHPPgAdmin v6.0.0-beta.49
 */
namespace PHPPgAdmin\Database;

/**
 * @file
 * PostgreSQL 11.x support
 *
 */
/**
 * Class to add support for Postgres10.
 */
class Postgres11 extends Postgres10
{
    public $major_version = 11;
}