Skip to content

Commit

Permalink
Merge pull request #1009 from bobvandevijver/add-verbosity-help
Browse files Browse the repository at this point in the history
#996: Add verbosity notice to command help
  • Loading branch information
goetas authored Jun 21, 2020
2 parents 4b3756a + ce1414d commit 0e495ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ protected function configure() : void
<info>%command.full_name% FQCN</info>
You can show more information about the process by increasing the verbosity level. To see the
executed queries, set the level to debug with <comment>-vv</comment>:
<info>%command.full_name% FQCN -vv</info>
If no <comment>--up</comment> or <comment>--down</comment> option is specified it defaults to up:
<info>%command.full_name% FQCN --down</info>
Expand All @@ -92,6 +97,7 @@ protected function configure() : void
All the previous commands accept multiple migration versions, allowing you run execute more than
one migration at once:
<info>%command.full_name% FQCN-1 FQCN-2 ...FQCN-n </info>
EOT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ protected function configure() : void
<info>%command.full_name%</info>
You can show more information about the process by increasing the verbosity level. To see the
executed queries, set the level to debug with <comment>-vv</comment>:
<info>%command.full_name% -vv</info>
You can optionally manually specify the version you wish to migrate to:
<info>%command.full_name% FQCN</info>
Expand Down Expand Up @@ -110,6 +115,7 @@ protected function configure() : void
<info>%command.full_name% --query-time</info>
Use the --all-or-nothing option to wrap the entire migration in a transaction.
EOT
);

Expand Down

0 comments on commit 0e495ca

Please sign in to comment.