added patient age

This commit is contained in:
Dr Masroor Ehsan 2025-01-19 10:11:12 +06:00
parent bef01c0408
commit bf589f1526

View File

@ -26,6 +26,7 @@ public function up(): void
$table->string('patient_id')->nullable(); $table->string('patient_id')->nullable();
$table->string('patient_name'); $table->string('patient_name');
$table->string('patient_sex')->nullable(); $table->string('patient_sex')->nullable();
$table->string('patient_age')->nullable();
$table->date('patient_birthdate')->nullable(); $table->date('patient_birthdate')->nullable();
$table->string('study_instance_uid')->index(); $table->string('study_instance_uid')->index();