From b7b98c6c952fac1a5e979df4a8f62cf0d3537f17 Mon Sep 17 00:00:00 2001 From: kan7003 Date: Tue, 3 Jan 2017 21:37:06 -0500 Subject: [PATCH 1/3] Changed the column name from datetime_of_birth to birth_datetime to stick with the new naming convention. --- Oracle/OMOP CDM ddl - Oracle.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oracle/OMOP CDM ddl - Oracle.sql b/Oracle/OMOP CDM ddl - Oracle.sql index 11928ac..f29b470 100644 --- a/Oracle/OMOP CDM ddl - Oracle.sql +++ b/Oracle/OMOP CDM ddl - Oracle.sql @@ -229,7 +229,7 @@ CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - datetime_of_birth TIMESTAMP WITH TIME ZONE NULL, + birth_datetime TIMESTAMP WITH TIME ZONE NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL, From 183e42b552433cc0ac9166991eb35f612a0430bd Mon Sep 17 00:00:00 2001 From: kan7003 Date: Tue, 3 Jan 2017 21:37:38 -0500 Subject: [PATCH 2/3] Changed the column name from datetime_of_birth to birth_datetime to stick with the new naming convention. --- 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 3d4e292..12592c2 100644 --- a/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql +++ b/PostgreSQL/OMOP CDM ddl - PostgreSQL.sql @@ -229,7 +229,7 @@ CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - datetime_of_birth TIMESTAMP NULL, + birth_datetime TIMESTAMP NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL, From c412304d22c0282bee95306f0aba2e45a4b63e0f Mon Sep 17 00:00:00 2001 From: kan7003 Date: Tue, 3 Jan 2017 21:37:59 -0500 Subject: [PATCH 3/3] Changed the column name from datetime_of_birth to birth_datetime to stick with the new naming convention. --- Sql Server/OMOP CDM ddl - SQL Server.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sql Server/OMOP CDM ddl - SQL Server.sql b/Sql Server/OMOP CDM ddl - SQL Server.sql index 2b30a0e..0a89120 100644 --- a/Sql Server/OMOP CDM ddl - SQL Server.sql +++ b/Sql Server/OMOP CDM ddl - SQL Server.sql @@ -229,7 +229,7 @@ CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - datetime_of_birth DATETIME2 NULL, + birth_datetime DATETIME2 NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL,