id(); $table->foreignIdFor(User::class)->nullable()->constrained()->cascadeOnDelete(); $table->string("name")->nullable(); $table->string("description")->nullable(); $table->json("education"); $table->json("languages"); $table->json("technologies"); $table->json("projects"); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists("resumes"); } };