Skip to content

Commit

Permalink
Update schema documentation to make preferences table value column a …
Browse files Browse the repository at this point in the history
…CLOB vs VARCHAR
  • Loading branch information
ryanrdoherty committed Apr 7, 2021
1 parent a180abf commit 3a7e66c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Model/data/create_schema_userlogins5.sql
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ CREATE TABLE userlogins5.preferences
user_id NUMBER(12) NOT NULL,
project_id VARCHAR2(50) NOT NULL,
preference_name VARCHAR2(4000) NOT NULL,
preference_value VARCHAR2(4000),
migration_id NUMBER(12),
preference_value CLOB,
CONSTRAINT "preferences_pk" PRIMARY KEY (user_id, project_id, preference_name),
CONSTRAINT "preferences_fk01" FOREIGN KEY (user_id)
REFERENCES userlogins5.users (user_id)
Expand Down

0 comments on commit 3a7e66c

Please sign in to comment.