id(); $table->string('nama'); $table->integer('umur'); $table->string('jenis_kelamin'); $table->text('gejala'); $table->text('preferensi_makanan'); $table->text('aktivitas_harian'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pasien'); } };