Skip to content

Commit

Permalink
MINOR Made the database types clearer by setting the minimum version …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
sminnee committed Oct 13, 2010
1 parent cf647f4 commit c153aa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'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',
Expand All @@ -75,7 +75,7 @@
); );


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


Expand Down

0 comments on commit c153aa6

Please sign in to comment.