MINOR Made the database types clearer by setting the minimum version required alongside the name - e.g. "MySQL 4.1+"

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100381 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-03-02 23:11:01 +00:00 committed by Sam Minnee
parent 00ecb7763e
commit 73152494c1

View File

@ -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');