From 033bd8be0b5cffbc863a7d626c3077aaa8307d1f Mon Sep 17 00:00:00 2001 From: Masroor Ehsan Date: Sun, 29 Dec 2024 22:04:54 +0600 Subject: [PATCH] missing field --- 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 4c4f3d4..2faa5d3 100644 --- a/database/migrations/2024_12_27_060234_create_studies_table.php +++ b/database/migrations/2024_12_27_060234_create_studies_table.php @@ -35,6 +35,7 @@ public function up(): void $table->string('operators_name')->nullable(); $table->string('manufacturer')->nullable(); $table->string('manufacturer_model_name')->nullable(); + $table->string('software_versions')->nullable(); $table->string('referring_physician_name')->nullable(); $table->string('study_modality', 4)->nullable();