1
0
mirror of synced 2024-12-14 07:06: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) {