uuid('id')->primary(); $table->string('name'); // e.g., Beginner $table->string('code')->unique(); // e.g., N5 $table->text('description')->nullable(); $table->integer('order_index')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('levels'); } };