7.x-3.x db.drush.inc | db_drush_help($section) |
Implements hook_drush_help().
File
- db/
db.drush.inc, line 32 - Mysql provisioning module.
Code
function db_drush_help($section) {
switch ($section) {
case 'error:PROVISION_CONNECT_DB_FAILED':
return dt('Unable to connect to database server.');
case 'error:PROVISION_CREATE_DB_FAILED':
return dt('Unable to create new databases.');
case 'error:PROVISION_GRANT_DB_USER_FAILED':
return dt('Unable to grant privileges to database users.');
case 'error:PROVISION_DROP_DB_FAILED':
return dt('Unable to drop database.');
}
}