FluxBB\Migrations\Install\Categories::create PHP Method

create() protected method

protected create ( Illuminate\Database\Schema\Blueprint $table )
$table Illuminate\Database\Schema\Blueprint
    protected function create(Blueprint $table)
    {
        $table->create();
        $table->string('slug', 100)->primary();
        $table->string('name');
        $table->integer('position')->default(0);
        $table->boolean('conversations_enabled')->default(true);
        $table->timestamps();
    }
Categories