fixing a typo in code that crashes DDL

typo that siad integer(50) - changed to just integer
This commit is contained in:
Vojtech Huser 2017-08-04 09:58:46 -04:00 committed by GitHub
parent b42dfcf680
commit dc7de71747
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ CREATE TABLE visit_occurrence
visit_source_concept_id INTEGER NULL ,
admitting_source_concept_id INTEGER NULL ,
admitting_source_value VARCHAR(50) NULL ,
discharge_to_concept_id INTEGER(50) NULL ,
discharge_to_concept_id INTEGER NULL ,
discharge_to_source_value VARCHAR(50) NULL ,
preceding_visit_occurrence_id INTEGER NULL
)