id(); $table->string('nama_kriteria'); $table->enum('tipe', ['benefit', 'cost'])->default('benefit'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('kriteria'); } };