You are here

function dba_drush_command in Database Administration 7

Implementation of hook_drush_command().

File

./dba.drush.inc, line 11
Drush support for dba.

Code

function dba_drush_command() {
  $items = array();
  $items['dba-sqlreport'] = array(
    'callback' => 'dba_drush_callback_sqlreport',
    'description' => 'Generate a statistical SQL server report.',
  );
  return $items;
}