FluxBB\Migrations\Install\ForumSubscriptions::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->integer('user_id')->unsigned();
        $table->integer('forum_id')->unsigned();
        $table->primary(array('user_id', 'forum_id'));
    }
ForumSubscriptions