uuid('id')->primary(); $table->uuid('user_id'); $table->string('fullname'); $table->string('address'); $table->string('phone'); $table->string('emergency_phone'); $table->enum('gender', ['male', 'female']); $table->integer('age'); $table->string('device_id')->nullable(); $table->string('condition')->default('normal'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('patients'); } };