integer('user_id')->unsigned()->nullable()->default(null)->index()->after('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('incidents', function (Blueprint $table) { $table->dropColumn('user_id'); }); } }