[2.0] Fixed SchemaTool CLI Task which was throwing PDOExceptions
This commit is contained in:
parent
6368eb6a4a
commit
c7ea8c78d3
1 changed files with 21 additions and 6 deletions
|
@ -170,8 +170,13 @@ class SchemaToolTask extends AbstractTask
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$printer->writeln('Creating database schema...', 'INFO');
|
$printer->writeln('Creating database schema...', 'INFO');
|
||||||
$tool->createSchema($classes);
|
|
||||||
$printer->writeln('Database schema created successfully.', 'INFO');
|
try {
|
||||||
|
$tool->createSchema($classes);
|
||||||
|
$printer->writeln('Database schema created successfully.', 'INFO');
|
||||||
|
} catch (\Exception $ex) {
|
||||||
|
$printer->writeln($ex->getMessage(), 'ERROR');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if ($isDrop) {
|
} else if ($isDrop) {
|
||||||
if (isset($args['dump-sql'])) {
|
if (isset($args['dump-sql'])) {
|
||||||
|
@ -180,8 +185,13 @@ class SchemaToolTask extends AbstractTask
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$printer->writeln('Dropping database schema...', 'INFO');
|
$printer->writeln('Dropping database schema...', 'INFO');
|
||||||
$tool->dropSchema($classes);
|
|
||||||
$printer->writeln('Database schema dropped successfully.', 'INFO');
|
try {
|
||||||
|
$tool->dropSchema($classes);
|
||||||
|
$printer->writeln('Database schema dropped successfully.', 'INFO');
|
||||||
|
} catch (\Exception $ex) {
|
||||||
|
$printer->writeln($ex->getMessage(), 'ERROR');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if ($isUpdate) {
|
} else if ($isUpdate) {
|
||||||
$printer->writeln("--update support is not yet fully implemented.", 'ERROR');
|
$printer->writeln("--update support is not yet fully implemented.", 'ERROR');
|
||||||
|
@ -192,8 +202,13 @@ class SchemaToolTask extends AbstractTask
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$printer->writeln('Updating database schema...', 'INFO');
|
$printer->writeln('Updating database schema...', 'INFO');
|
||||||
$tool->updateSchema($classes);
|
|
||||||
$printer->writeln('Database schema updated successfully.', 'INFO');
|
try {
|
||||||
|
$tool->updateSchema($classes);
|
||||||
|
$printer->writeln('Database schema updated successfully.', 'INFO');
|
||||||
|
} catch (\Exception $ex) {
|
||||||
|
$printer->writeln($ex->getMessage(), 'ERROR');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue