FluxBB\Migrations\Install\Config::create PHP Метод

create() защищенный Метод

protected create ( Illuminate\Database\Schema\Blueprint $table )
$table Illuminate\Database\Schema\Blueprint
    protected function create(Blueprint $table)
    {
        $table->create();
        $table->string('conf_name', 255)->default('');
        $table->text('conf_value')->nullable();
        $table->primary('conf_name');
    }
Config