mirror of
https://github.com/flarum/framework.git
synced 2024-11-28 11:34:36 +08:00
Installer: Fix models not being ready for use when running migrations
This was a regression after the recent introduction of a new migration that actually uses models. Maybe we should change this. See https://discuss.flarum.org/d/2023-can-t-manage-to-install-the-development-version-503-service-unavailable/8
This commit is contained in:
parent
89598646c1
commit
08312568ba
|
@ -161,16 +161,16 @@ class InstallCommand extends AbstractCommand
|
|||
|
||||
$this->storeConfiguration();
|
||||
|
||||
$resolver = $this->application->make('Illuminate\Database\ConnectionResolverInterface');
|
||||
AbstractModel::setConnectionResolver($resolver);
|
||||
AbstractModel::setEventDispatcher($this->application->make('events'));
|
||||
|
||||
$this->runMigrations();
|
||||
|
||||
$this->writeSettings();
|
||||
|
||||
$this->application->register('Flarum\Core\CoreServiceProvider');
|
||||
|
||||
$resolver = $this->application->make('Illuminate\Database\ConnectionResolverInterface');
|
||||
AbstractModel::setConnectionResolver($resolver);
|
||||
AbstractModel::setEventDispatcher($this->application->make('events'));
|
||||
|
||||
$this->seedGroups();
|
||||
$this->seedPermissions();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user