id('family_id'); $table->foreignId('person_id')->constrained('person', 'person_id')->cascadeOnDelete(); $table->text('names_of_parents')->nullable(); $table->text('names_of_children')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('family'); } };