Ecco la risposta completa per il futuro lettore. Nota che questo è possibile solo in Laravel 5+.
Prima di tutto avrai bisogno del pacchetto dottrine / dbal :
composer require doctrine/dbal
Ora nella tua migrazione puoi farlo per rendere nulla la colonna:
public function up()
{
Schema::table('users', function (Blueprint $table) {
// change() tells the Schema builder that we are altering a table
$table->integer('user_id')->unsigned()->nullable()->change();
});
}
Forse ti starai chiedendo come ripristinare questa operazione. Purtroppo questa sintassi non è supportata:
// Sadly does not work :'(
$table->integer('user_id')->unsigned()->change();
Questa è la sintassi corretta per ripristinare la migrazione:
$table->integer('user_id')->unsigned()->nullable(false)->change();
Oppure, se preferisci, puoi scrivere una query non elaborata:
public function down()
{
/* Make user_id un-nullable */
DB::statement('UPDATE `users` SET `user_id` = 0 WHERE `user_id` IS NULL;');
DB::statement('ALTER TABLE `users` MODIFY `user_id` INTEGER UNSIGNED NOT NULL;');
}
Spero che troverai utile questa risposta. :)