Skip to content

Commit

Permalink
Merge pull request #1044 from OHDSI/ucum_aug_2024
Browse files Browse the repository at this point in the history
Two new units added
  • Loading branch information
AlaikseiKatyshou authored Aug 29, 2024
2 parents a129014 + 9f35cbb commit c51f368
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions working/manual_changes/2024/2024-08-29.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
--add new UCUM concepts
DO $_$
BEGIN
PERFORM vocabulary_pack.AddNewConcept(
pConcept_name =>'per nanoliter',
pDomain_id =>'Unit',
pVocabulary_id =>'UCUM',
pConcept_class_id =>'Unit',
pStandard_concept =>'S',
pConcept_code =>'/nL'
);
END $_$;

DO $_$
BEGIN
PERFORM vocabulary_pack.AddNewConcept(
pConcept_name =>'per picoliter',
pDomain_id =>'Unit',
pVocabulary_id =>'UCUM',
pConcept_class_id =>'Unit',
pStandard_concept =>'S',
pConcept_code =>'/pL'
);
END $_$;

0 comments on commit c51f368

Please sign in to comment.