Merge pull request #332 from rchavik/schema-shell

Enable short option for --plugin and --connection
This commit is contained in:
José Lorenzo Rodríguez 2011-11-24 08:32:04 -08:00
commit 7e790aa6cb

View file

@ -444,9 +444,11 @@ class SchemaShell extends Shell {
*/
public function getOptionParser() {
$plugin = array(
'short' => 'p',
'help' => __d('cake_console', 'The plugin to use.'),
);
$connection = array(
'short' => 'c',
'help' => __d('cake_console', 'Set the db config to use.'),
'default' => 'default'
);