Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions rmd/sqlScripts.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,8 @@ INSERT INTO @cdm_schema.cdm_source (
source_release_date,
cdm_release_date,
cdm_version,
vocabulary_version,
vocabulary_version_concept_id
cdm_version_concept_id,
vocabulary_version
)
SELECT
'<your_cdm_source_name>',
Expand All @@ -465,8 +465,8 @@ SELECT
'<your_source_release_date>', -- when the source data was pulled
getdate(), -- or the date of ETL run
'v5.4',
vocabulary_version,
756265 -- 'OMOP CDM Version 5.4.0'
756265, -- 'OMOP CDM Version 5.4.0'
vocabulary_version
FROM @cdm_schema.vocabulary
WHERE vocabulary_id = 'None';
```
Expand Down
Loading