id('KecamatanId'); $table->unsignedBigInteger('KabupatenId'); $table->foreign('KabupatenId')->references('KabupatenId')->on('Kabupaten')->onDelete('cascade'); $table->string('NamaKecamatan'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('Kecamatan'); } };