From: Max Semenik Date: Mon, 26 Mar 2018 18:47:02 +0000 (-0700) Subject: Bump required Postgres version to 9.2 X-Git-Tag: 1.31.0-rc.0~278^2 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=eab02463f5659e519920999c7c43c7bb2db888d7;p=lhc%2Fweb%2Fwiklou.git Bump required Postgres version to 9.2 This was approved by TechCom in the "PostgreSQL schema change for consistency with MySQL" RfC (T164898). Bug: T164898 Bug: T190539 Change-Id: I1b17c18c513e4edcd9219e36e873c55dd7f33034 --- diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index bc142ae52a..e0bacb35d1 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -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) diff --git a/includes/installer/PostgresInstaller.php b/includes/installer/PostgresInstaller.php index 21d83d2397..16b47e2869 100644 --- a/includes/installer/PostgresInstaller.php +++ b/includes/installer/PostgresInstaller.php @@ -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;