uuid('id')->primary(); $table->foreignUuid('resume_id')->constrained('resumes')->cascadeOnDelete(); $table->string('name'); $table->string('level'); $table->json('keywords')->default('[]'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('skills'); } };