uuid('id')->primary(); $table->foreignUuid('resume_id')->constrained('resumes')->cascadeOnDelete(); $table->string('title'); $table->date('awarded_at'); $table->string('awarder'); $table->string('summary'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('awards'); } };