[DDC-1616] Removed non-SQL message and improve exportability of SchemaTool CreateCommand.
This commit is contained in:
parent
55a9e1e90c
commit
48dcee9d60
1 changed files with 3 additions and 3 deletions
|
@ -65,12 +65,12 @@ EOT
|
||||||
|
|
||||||
protected function executeSchemaCommand(InputInterface $input, OutputInterface $output, SchemaTool $schemaTool, array $metadatas)
|
protected function executeSchemaCommand(InputInterface $input, OutputInterface $output, SchemaTool $schemaTool, array $metadatas)
|
||||||
{
|
{
|
||||||
$output->write('ATTENTION: This operation should not be executed in a production environment.' . PHP_EOL . PHP_EOL);
|
|
||||||
|
|
||||||
if ($input->getOption('dump-sql') === true) {
|
if ($input->getOption('dump-sql') === true) {
|
||||||
$sqls = $schemaTool->getCreateSchemaSql($metadatas);
|
$sqls = $schemaTool->getCreateSchemaSql($metadatas);
|
||||||
$output->write(implode(';' . PHP_EOL, $sqls) . PHP_EOL);
|
$output->write(implode(';' . PHP_EOL, $sqls) . ';' . PHP_EOL);
|
||||||
} else {
|
} else {
|
||||||
|
$output->write('ATTENTION: This operation should not be executed in a production environment.' . PHP_EOL . PHP_EOL);
|
||||||
|
|
||||||
$output->write('Creating database schema...' . PHP_EOL);
|
$output->write('Creating database schema...' . PHP_EOL);
|
||||||
$schemaTool->createSchema($metadatas);
|
$schemaTool->createSchema($metadatas);
|
||||||
$output->write('Database schema created successfully!' . PHP_EOL);
|
$output->write('Database schema created successfully!' . PHP_EOL);
|
||||||
|
|
Loading…
Add table
Reference in a new issue