id(); $table->string('name'); $table->enum('type', ['cost', 'benefit']); $table->integer('weight_order')->default(0); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('criterias'); } };