function schema_drush_help in Schema 8
Same name and namespace in other branches
- 6 schema.drush.inc \schema_drush_help()
- 7 schema.drush.inc \schema_drush_help()
Implementation of hook_drush_help().
File
- ./
schema.drush.inc, line 52 - 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.");
case 'drush:schema-fix':
return dt("Attempts to fix incorrect table definitions.");
}
}