mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUG Revert incorrect class rename (#5765)
This commit is contained in:
parent
ff846134f2
commit
4a22c2bd78
@ -6,7 +6,8 @@ $frameworkPath = defined('FRAMEWORK_PATH') ? FRAMEWORK_PATH : FRAMEWORK_NAME;
|
||||
// Use MySQLi as default
|
||||
DatabaseAdapterRegistry::register(
|
||||
array(
|
||||
'class' => 'SilverStripe\\ORM\\Connect\\MySQLDatabase',
|
||||
/** @skipUpgrade */
|
||||
'class' => 'MySQLDatabase',
|
||||
'title' => 'MySQL 5.0+ (using MySQLi)',
|
||||
'helperPath' => $frameworkPath . '/dev/install/MySQLDatabaseConfigurationHelper.php',
|
||||
'supported' => class_exists('MySQLi'),
|
||||
@ -19,6 +20,7 @@ DatabaseAdapterRegistry::register(
|
||||
// Setup MySQL PDO as alternate option
|
||||
DatabaseAdapterRegistry::register(
|
||||
array(
|
||||
/** @skipUpgrade */
|
||||
'class' => 'MySQLPDODatabase',
|
||||
'title' => 'MySQL 5.0+ (using PDO)',
|
||||
'helperPath' => $frameworkPath . '/dev/install/MySQLDatabaseConfigurationHelper.php',
|
||||
|
Loading…
Reference in New Issue
Block a user