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