id(); $table->string('name'); $table->string('email')->unique(); $table->string('phone')->unique(); $table->date('dob'); $table->enum('role', ['doctor', 'patient']); $table->string('password'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('accounts'); } };