1
0
mirror of synced 2025-03-04 20:03:21 +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');
if ($dumpSql) {
$output->writeln(implode(';' . PHP_EOL, $sqls));
$output->writeln(implode(';' . PHP_EOL, $sqls) . ';');
}
if ($force) {