id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('gender')->nullable(); $table->date('date_of_birth')->nullable(); $table->string('phone_number')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('profiles'); } };