Skip to content

Commit

Permalink
Merge pull request #2 from kids-first/remove-null-constraint
Browse files Browse the repository at this point in the history
🔥🐛 Remove not null constraint on vocabulary_reference
  • Loading branch information
znatty22 committed Nov 15, 2018
2 parents 939c24e + 7e4b20c commit b53f696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PostgreSQL/OMOP CDM postgresql ddl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ CREATE TABLE concept (
CREATE TABLE vocabulary (
vocabulary_id VARCHAR(20) NOT NULL,
vocabulary_name VARCHAR(255) NOT NULL,
vocabulary_reference VARCHAR(255) NOT NULL,
vocabulary_reference VARCHAR(255),
vocabulary_version VARCHAR(255) NULL,
vocabulary_concept_id INTEGER NOT NULL
)
Expand Down

0 comments on commit b53f696

Please sign in to comment.