unsignedBigInteger('jenis_jaminan_id')->nullable()->after('permohonan_id'); $table->foreign('jenis_jaminan_id')->references('id')->on('jenis_jaminan')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('inspeksi', function (Blueprint $table) { $table->dropColumn('jenis_jaminan_id'); }); } };