mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
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
This commit is contained in:
parent
cf647f463e
commit
c153aa6746
@ -60,7 +60,7 @@ $otherDatabaseLocations = array(
|
|||||||
'postgresql' => array(
|
'postgresql' => array(
|
||||||
'dir' => 'postgresql/code',
|
'dir' => 'postgresql/code',
|
||||||
'class' => 'PostgreSQLDatabase',
|
'class' => 'PostgreSQLDatabase',
|
||||||
'title' => 'PostgreSQL'
|
'title' => 'PostgreSQL 8.3+'
|
||||||
),
|
),
|
||||||
'sqlite3' => array(
|
'sqlite3' => array(
|
||||||
'dir' => 'sqlite3/code',
|
'dir' => 'sqlite3/code',
|
||||||
@ -75,7 +75,7 @@ $otherDatabaseLocations = array(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// MySQL support comes out of the box with sapphire
|
// 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/DatabaseConfigurationHelper.php');
|
||||||
include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');
|
include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user