Mage2\Install\Controllers\InstallController::databaseTablePost PHP Method

databaseTablePost() public method

public databaseTablePost ( )
    public function databaseTablePost()
    {
        try {
            Artisan::call('mage2:migrate');
            //Artisan::call('db:seed');
        } catch (Exception $e) {
            throw new Exception($e->getMessage());
        }
        return redirect()->route('mage2.install.database.data.get');
    }