1
0
mirror of synced 2024-12-13 22:56:04 +03:00

DDC-2489 Added missing semicolon when dump-sql on schema update.

This commit is contained in:
Guilherme Blanco 2013-06-12 00:31:25 -04:00
parent 0248f743ba
commit 0d834d0bd4

View File

@ -123,7 +123,7 @@ EOT
$force = true === $input->getOption('force'); $force = true === $input->getOption('force');
if ($dumpSql) { if ($dumpSql) {
$output->writeln(implode(';' . PHP_EOL, $sqls)); $output->writeln(implode(';' . PHP_EOL, $sqls) . ';');
} }
if ($force) { if ($force) {
@ -138,7 +138,7 @@ EOT
if ($dumpSql || $force) { if ($dumpSql || $force) {
return 0; return 0;
} }
$output->writeln('<comment>ATTENTION</comment>: This operation should not be executed in a production environment.'); $output->writeln('<comment>ATTENTION</comment>: This operation should not be executed in a production environment.');
$output->writeln(' Use the incremental update to detect changes during development and use'); $output->writeln(' Use the incremental update to detect changes during development and use');
$output->writeln(' the SQL DDL provided to manually update your database in production.'); $output->writeln(' the SQL DDL provided to manually update your database in production.');