Skip to content

Commit f9e5718

Browse files
committed
Added missing drug susceptibility and symptom history table colums
1 parent 82da717 commit f9e5718

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sormas-backend/src/main/resources/sql/sormas_schema.sql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14404,4 +14404,16 @@ alter table symptoms add column IF NOT EXISTS nocturnalcough varchar(255);
1440414404

1440514405
INSERT INTO schema_version (version_number, comment) VALUES (577, 'Pertussis missed symptom, #13373');
1440614406

14407+
-- 2025-06-27 Fix failing tests #13516
14408+
alter table symptoms_history add nocturnalcough varchar(255);
14409+
14410+
alter table drugsusceptibility_history add column IF NOT EXISTS ceftriaxonemic numeric;
14411+
alter table drugsusceptibility_history add column IF NOT EXISTS ceftriaxoneSusceptibility varchar(255);
14412+
alter table drugsusceptibility_history add column IF NOT EXISTS penicillinmic numeric;
14413+
alter table drugsusceptibility_history add column IF NOT EXISTS penicillinSusceptibility varchar(255);
14414+
alter table drugsusceptibility_history add column IF NOT EXISTS erythromycinmic numeric;
14415+
alter table drugsusceptibility_history add column IF NOT EXISTS erythromycinSusceptibility varchar(255);
14416+
14417+
INSERT INTO schema_version (version_number, comment) VALUES (578, 'Update history tables #13516');
14418+
1440714419
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***

0 commit comments

Comments
 (0)