Created command to run migrations with a lock

This commit is contained in:
Alejandro Celaya
2019-08-06 20:48:48 +02:00
parent 1341d4fe57
commit c04f0af56f
7 changed files with 54 additions and 6 deletions

View File

@@ -28,6 +28,6 @@ abstract class AbstractDatabaseCommand extends AbstractLockedCommand
protected function runPhpCommand(OutputInterface $output, array $command): void
{
array_unshift($command, $this->phpBinary);
$this->processHelper->run($output, $command);
$this->processHelper->run($output, $command, null, null, $output->getVerbosity());
}
}