id(); $table->string('kode_kriteria'); $table->string('nama_kriteria'); $table->enum('jenis', ['Benefit', 'Cost']); // Menyimpan jenis kriteria (Benefit atau Cost) $table->float('bobot'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('data_kriterias'); } };