REBELinBLUE\Deployer\Console\Commands\InstallApp::migrate PHP Method

migrate() protected method

Calls the artisan migrate to set up the database in development mode it also seeds the DB.
protected migrate ( boolean $seed = false )
$seed boolean Whether or not to seed the database
    protected function migrate($seed = false)
    {
        $this->info('Running database migrations');
        $this->line('');
        $this->call('migrate', ['--force' => true]);
        $this->line('');
        if ($seed) {
            $this->info('Seeding database');
            $this->line('');
            $this->call('db:seed', ['--force' => true]);
            $this->line('');
        }
    }