Issue #2062399 by kattekrab: Add Percona Server to list of supported MySQL alternative databases.

8.0.x
webchick 2013-08-30 23:34:34 -07:00
parent 135f4e6a29
commit af711e6082
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@ Drupal requires:
- MySQL 5.0.15 (or greater) (http://www.mysql.com/).
- MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully
compatible drop-in replacement for MySQL.
- Percona Server 5.1.70 (or greater) (http://www.percona.com/). Percona
Server is a backwards-compatible replacement for MySQL.
- PostgreSQL 8.3 (or greater) (http://www.postgresql.org/).
- SQLite 3.4.2 (or greater) (http://www.sqlite.org/).

View File

@ -27,7 +27,7 @@ class Tasks extends InstallTasks {
* Returns a human-readable name string for MySQL and equivalent databases.
*/
public function name() {
return t('MySQL, MariaDB, or equivalent');
return t('MySQL, MariaDB, Percona Server, or equivalent');
}
/**