id('internment_id'); $table->foreignId('person_id')->constrained('person', 'person_id')->cascadeOnDelete(); $table->string('corps_issued', 100)->nullable(); $table->string('interned_in', 100)->nullable(); $table->string('sent_to', 100)->nullable(); $table->string('internee_occupation', 100)->nullable(); $table->text('internee_address')->nullable(); $table->string('cav', 50)->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('internment'); } };