id(); $table->string('title'); $table->text('description')->nullable(); $table->unsignedTinyInteger('rating'); // 1–10 $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('skills'); } };