Bump required Postgres version to 9.2
authorMax Semenik <maxsem.wiki@gmail.com>
Mon, 26 Mar 2018 18:47:02 +0000 (11:47 -0700)
committerLegoktm <legoktm@member.fsf.org>
Mon, 26 Mar 2018 20:12:36 +0000 (20:12 +0000)
This was approved by TechCom in the "PostgreSQL schema change for
consistency with MySQL" RfC (T164898).

Bug: T164898
Bug: T190539
Change-Id: I1b17c18c513e4edcd9219e36e873c55dd7f33034

RELEASE-NOTES-1.31
includes/installer/PostgresInstaller.php

index bc142ae..e0bacb3 100644 (file)
@@ -332,7 +332,7 @@ Oracle and Microsoft SQL Server.
 The supported versions are:
 
 * MySQL 5.0.3 or later
-* PostgreSQL 8.3 or later
+* PostgreSQL 9.2 or later
 * SQLite 3.3.7 or later
 * Oracle 9.0.1 or later
 * Microsoft SQL Server 2005 (9.00.1399)
index 21d83d2..16b47e2 100644 (file)
@@ -46,7 +46,7 @@ class PostgresInstaller extends DatabaseInstaller {
                '_InstallUser' => 'postgres',
        ];
 
-       public static $minimumVersion = '8.3';
+       public static $minimumVersion = '9.2';
        protected static $notMiniumumVerisonMessage = 'config-postgres-old';
        public $maxRoleSearchDepth = 5;