mirror of
https://github.com/flarum/framework.git
synced 2024-11-28 20:16:08 +08:00
Migrate extensions in upgrade script
This commit is contained in:
parent
71c7740086
commit
3392d9fdcf
|
@ -52,5 +52,19 @@ class UpgradeCommand extends Command
|
|||
foreach ($migrator->getNotes() as $note) {
|
||||
$this->info($note);
|
||||
}
|
||||
|
||||
$extensions = $this->container->make('Flarum\Support\ExtensionManager');
|
||||
|
||||
$migrator = $extensions->getMigrator();
|
||||
|
||||
foreach ($extensions->getInfo() as $extension) {
|
||||
$this->info('Upgrading extension: '.$extension->name);
|
||||
|
||||
$extensions->enable($extension->name);
|
||||
|
||||
foreach ($migrator->getNotes() as $note) {
|
||||
$this->info($note);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user