1
0
mirror of https://github.com/flarum/core.git synced 2025-07-28 20:20:34 +02:00

Restructure Flarum\Database namespace

This commit is contained in:
Franz Liedke
2017-06-24 11:34:29 +02:00
parent c6985ae31c
commit d897839097
5 changed files with 35 additions and 12 deletions

View File

@@ -0,0 +1,88 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Database\Console;
use Flarum\Console\AbstractCommand;
use Illuminate\Contracts\Container\Container;
class MigrateCommand extends AbstractCommand
{
/**
* @var Container
*/
protected $container;
/**
* @param Container $container
*/
public function __construct(Container $container)
{
$this->container = $container;
parent::__construct();
}
/**
* {@inheritdoc}
*/
protected function configure()
{
$this
->setName('migrate')
->setDescription('Run outstanding migrations');
}
/**
* {@inheritdoc}
*/
protected function fire()
{
$this->info('Migrating Flarum...');
$this->upgrade();
$this->info('DONE.');
}
public function upgrade()
{
$this->container->bind('Illuminate\Database\Schema\Builder', function ($container) {
return $container->make('Illuminate\Database\ConnectionInterface')->getSchemaBuilder();
});
$migrator = $this->container->make('Flarum\Database\Migrator');
$migrator->run(__DIR__.'/../../../migrations');
foreach ($migrator->getNotes() as $note) {
$this->info($note);
}
$extensions = $this->container->make('Flarum\Extension\ExtensionManager');
foreach ($extensions->getExtensions() as $name => $extension) {
if (! $extension->isEnabled()) {
continue;
}
$this->info('Migrating extension: '.$name);
$notes = $extensions->migrate($extension);
foreach ($notes as $note) {
$this->info($note);
}
}
$this->container->make('Flarum\Settings\SettingsRepositoryInterface')->set('version', $this->container->version());
}
}