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