unsignedInteger('pack')->nullable()->after('option'); $table->foreign('pack')->references('id')->on('service_packs'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('servers', function (Blueprint $table) { $table->dropForeign(['pack']); $table->dropColumn('pack'); }); } }