From bf589f1526ccdb46083fe8605c9d74214f71a09c Mon Sep 17 00:00:00 2001 From: Dr Masroor Ehsan Date: Sun, 19 Jan 2025 10:11:12 +0600 Subject: [PATCH] added patient age --- database/migrations/2024_12_27_060234_create_studies_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2024_12_27_060234_create_studies_table.php b/database/migrations/2024_12_27_060234_create_studies_table.php index 4796057..e9ec824 100644 --- a/database/migrations/2024_12_27_060234_create_studies_table.php +++ b/database/migrations/2024_12_27_060234_create_studies_table.php @@ -26,6 +26,7 @@ public function up(): void $table->string('patient_id')->nullable(); $table->string('patient_name'); $table->string('patient_sex')->nullable(); + $table->string('patient_age')->nullable(); $table->date('patient_birthdate')->nullable(); $table->string('study_instance_uid')->index();