id(); $table->string('kode'); $table->string('nama'); $table->string('p1')->nullable(); $table->string('p2')->nullable(); $table->string('p3')->nullable(); $table->string('p4')->nullable(); $table->string('p5')->nullable(); $table->string('p6')->nullable(); $table->string('p7')->nullable(); $table->string('p8')->nullable(); $table->string('p9')->nullable(); $table->string('p10')->nullable(); $table->float('nilai_bobot')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('alternatifs'); } };