mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
CST-12178 default score value as null, checks about its value has to be delegated to the services, not as db constraints
This commit is contained in:
@@ -10,4 +10,4 @@
|
|||||||
-- edit notifyservice table add score column
|
-- edit notifyservice table add score column
|
||||||
-----------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------
|
||||||
|
|
||||||
ALTER TABLE notifyservice ADD COLUMN score NUMERIC(6, 5) DEFAULT NULL CHECK (score >= 0 AND score <= 1);
|
ALTER TABLE notifyservice ADD COLUMN score NUMERIC(6, 5);
|
@@ -10,4 +10,4 @@
|
|||||||
-- edit notifyservice table add score column
|
-- edit notifyservice table add score column
|
||||||
-----------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------
|
||||||
|
|
||||||
ALTER TABLE notifyservice ADD COLUMN score NUMERIC(6, 5) DEFAULT NULL CHECK (score >= 0 AND score <= 1);
|
ALTER TABLE notifyservice ADD COLUMN score NUMERIC(6, 5);
|
Reference in New Issue
Block a user