mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 09:44:55 +02:00
Add some comment about optional sorting, into migrate:run command
This commit is contained in:
@@ -45,6 +45,22 @@ class MigrateRunCommand extends Command
|
|||||||
|
|
||||||
$down = $input->getOption('down') ?? false;
|
$down = $input->getOption('down') ?? false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sort according to $down option.
|
||||||
|
* Do we really want it?
|
||||||
|
* Or should we use order provided by user,
|
||||||
|
* even when it's not sorted correctly?
|
||||||
|
* Leaving it for consideration.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
if ($down) {
|
||||||
|
rsort($ids);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
sort($ids);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
foreach ($ids as $id) {
|
foreach ($ids as $id) {
|
||||||
$this->executeMigration($id, $io, !$down);
|
$this->executeMigration($id, $io, !$down);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user