id(); $table->foreignId('group_id')->constrained()->cascadeOnDelete(); $table->string('first_name'); $table->string('last_name'); $table->date('birthdate'); $table->string('image')->nullable(); $table->string('local_passport')->nullable(); $table->string('international_passport')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pilgrims'); } };