integer('nodestatus_id')->nullable(); $table->foreign(['nodestatus_id'])->references(['id'])->on('echoareas'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('domains', function (Blueprint $table) { $table->dropForeign(['nodestatus_id']); $table->dropColumn('nodestatus_id'); }); } };