uuid('id')->primary(); $table->foreignUuid('resume_id')->constrained('resumes')->cascadeOnDelete(); $table->string('name'); $table->date('start_date'); $table->date('end_date')->nullable(); $table->string('description'); $table->string('url'); $table->json('highlights')->default('[]'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };