From cc06899a2198eab9d3686fbf37264ffcf708d942 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Tue, 28 Jan 2014 11:55:28 +0100 Subject: [PATCH] Add constants for minimum DB versions supported --- core/constant_inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/constant_inc.php b/core/constant_inc.php index 54f5a53474..d5310daccd 100644 --- a/core/constant_inc.php +++ b/core/constant_inc.php @@ -39,6 +39,9 @@ # installation define( 'CONFIGURED_PASSWORD', "______" ); +define( 'DB_MIN_VERSION_MSSQL', '9.0.0' ); +define( 'DB_MIN_VERSION_MYSQL', '5.0.8' ); # See #16584 +define( 'DB_MIN_VERSION_PGSQL', '8.4' ); # Earliest supported version as of Jan 2014 # error types define( 'ERROR', E_USER_ERROR );