Skip to content

Commit

Permalink
Update schema.sql
Browse files Browse the repository at this point in the history
Remove char limits for concept_node.name and concept_node.display
  • Loading branch information
sharra44 authored and Luke-Sikina committed Feb 5, 2025
1 parent 3bc87d8 commit c800f9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ CREATE TABLE dict.consent (
CREATE TABLE dict.concept_node (
CONCEPT_NODE_ID INT GENERATED BY DEFAULT AS IDENTITY,
DATASET_ID INT NOT NULL,
NAME VARCHAR(512) NOT NULL,
DISPLAY VARCHAR(512) NOT NULL,
NAME VARCHAR NOT NULL,
DISPLAY VARCHAR NOT NULL,
CONCEPT_TYPE VARCHAR(32) NOT NULL DEFAULT 'Interior',
CONCEPT_PATH VARCHAR(10000) NOT NULL DEFAULT 'INVALID',
PARENT_ID INT,
Expand Down

0 comments on commit c800f9c

Please sign in to comment.