Skip to content

Commit

Permalink
Tables should be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaar, Bjørn-Andre committed Dec 18, 2023
1 parent 3644cf6 commit 76de7f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-- Removed not null constraint since a ReferencingClassificationItem does not have these set
ALTER TABLE classification_item ALTER COLUMN code VARCHAR(255);
ALTER TABLE classification_item ALTER COLUMN official_name VARCHAR(1024);
ALTER TABLE classification_item ALTER COLUMN code VARCHAR(255) null ;
ALTER TABLE classification_item ALTER COLUMN official_name VARCHAR(1024) null;

0 comments on commit 76de7f7

Please sign in to comment.