You are here

function schema_drush_help in Schema 6

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

Implementation of hook_drush_help().

File

./schema.drush.inc, line 38
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).");
  }
}