bigIncrements('id_kmeans_aki'); $table->unsignedInteger('id_kecamatan'); $table->double('grand_total_aki'); $table->unsignedBigInteger('id_cluster')->nullable(); $table->timestamp('created_at')->nullable(); $table->timestamp('updated_at')->nullable(); $table->foreign('id_kecamatan')->references('id_kecamatan')->on('kecamatan')->onDelete('cascade'); $table->foreign('id_cluster')->references('id_cluster')->on('clusters')->onDelete('set null'); }); } /** * Reverse the migrations. */ public function down(): void { // } };