You are here

function schema_drush_help in Schema 7

Same name and namespace in other branches
  1. 8 schema.drush.inc \schema_drush_help()
  2. 6 schema.drush.inc \schema_drush_help()

Implementation of hook_drush_help().

File

./schema.drush.inc, line 43
Schema drush commands.

Code

function schema_drush_help($section) {
  switch ($section) {
    case 'drush:schema-inspect':
      return dt("Show the Drupal schema definition for table(s).");
    case 'drush:schema-compare':
      return dt("List tables that match, mismatch, are missing or are extra.");
  }
}