id('person_id'); $table->string('surname', 100)->nullable(); $table->string('christian_name', 100)->nullable(); $table->string('full_name', 200)->nullable(); $table->date('date_of_birth')->nullable(); $table->string('place_of_birth', 100)->nullable(); $table->date('date_of_death')->nullable(); $table->string('occupation', 100)->nullable(); $table->text('additional_notes')->nullable(); $table->string('reference', 100)->nullable(); $table->string('id_card_no', 50)->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('person'); } };