Laravel Migration de Changement à Faire une Colonne Nullable

J'ai créé une migration avec unsigned user_id. Comment puis-je modifier user_id dans une nouvelle migration de le rendre également nullable()?

Schema::create('throttle', function(Blueprint $table)
{
    $table->increments('id');
    //this needs to also be nullable, how should the next migration be?
    $table->integer('user_id')->unsigned();
}
InformationsquelleAutor user391986 | 2014-06-25