From c153aa6746329b6581eefbeff761f76fc92e1a82 Mon Sep 17 00:00:00 2001 From: sminnee Date: Wed, 13 Oct 2010 04:22:15 +0000 Subject: [PATCH] MINOR Made the database types clearer by setting the minimum version required alongside the name - e.g. "MySQL 4.1+" (from r100381) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112183 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index 073fe86..0850e50 100644 --- a/install.php +++ b/install.php @@ -60,7 +60,7 @@ $otherDatabaseLocations = array( 'postgresql' => array( 'dir' => 'postgresql/code', 'class' => 'PostgreSQLDatabase', - 'title' => 'PostgreSQL' + 'title' => 'PostgreSQL 8.3+' ), 'sqlite3' => array( 'dir' => 'sqlite3/code', @@ -75,7 +75,7 @@ $otherDatabaseLocations = array( ); // MySQL support comes out of the box with sapphire -$foundDatabaseClasses = array('MySQLDatabase' => 'MySQL'); +$foundDatabaseClasses = array('MySQLDatabase' => 'MySQL 4.1+'); include_once('sapphire/dev/install/DatabaseConfigurationHelper.php'); include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');