From dc7de7174754cb2aa39e157b8a8c257adf77e405 Mon Sep 17 00:00:00 2001 From: Vojtech Huser Date: Fri, 4 Aug 2017 09:58:46 -0400 Subject: [PATCH] fixing a typo in code that crashes DDL typo that siad integer(50) - changed to just integer --- PostgreSQL/OMOP CDM ddl - PostgreSQL.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql b/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql index 442c934..cdae76e 100644 --- a/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql +++ b/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql @@ -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 )