Devise\Support\Console\DeviseMigrateCommand::handle PHP Метод

handle() публичный Метод

Run the package migrations.
public handle ( )
    public function handle()
    {
        $migrations = $this->app->make('migration.repository');
        if (!$migrations->repositoryExists()) {
            $migrations->createRepository();
        }
        $migrator = $this->app->make('migrator');
        $migrator->run(__DIR__ . '/../../../migrations');
    }
DeviseMigrateCommand