id('mr_pasien'); $table->string('nama'); $table->string('nik')->unique(); $table->string('no_hp'); $table->string('alamat'); $table->string('email'); $table->date('tgl_lahir'); $table->enum('jenis_kelamin', ['L', 'P']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('ms_pasien'); } };