id('migration_id'); $table->foreignId('person_id')->constrained('person', 'person_id')->cascadeOnDelete(); $table->date('date_of_arrival_aus')->nullable(); $table->date('date_of_arrival_nt')->nullable(); $table->string('arrival_period', 50)->nullable(); $table->string('data_source', 100)->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('migration'); } };