Skip to content

Commit

Permalink
Merge pull request #218 from OHDSI/cdm_v6
Browse files Browse the repository at this point in the history
Cdm v6
  • Loading branch information
clairblacketer authored Oct 11, 2018
2 parents 2529ef5 + 36ac30e commit b69d6fd
Show file tree
Hide file tree
Showing 95 changed files with 6,170 additions and 6,102 deletions.
48 changes: 48 additions & 0 deletions BigQuery/OMOP CDM Results bigquery ddl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
Copyright 2018-08 Observational Health Data Sciences and Informatics


Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

OMOP CDM v6.0 DDL

bigquery script to create OMOP common data model results schema version 6.0

last revised: 27-Aug-2018

Authors: Patrick Ryan, Christian Reich, Clair Blacketer
*/

#standardsql

--HINT DISTRIBUTE_ON_KEY(subject_id)
create table cohort
(
cohort_definition_id INT64 not null ,
subject_id INT64 not null ,
cohort_start_date date not null ,
cohort_end_date date not null
)
;


create table cohort_definition (
cohort_definition_id INT64 not null,
cohort_definition_name STRING not null,
cohort_definition_description STRING null,
definition_type_concept_id INT64 not null,
cohort_definition_syntax STRING null,
subject_concept_id INT64 not null,
cohort_initiation_date date null
)
;
Loading

0 comments on commit b69d6fd

Please sign in to comment.