Update V7.0_2019.11.13__relationship_type_copy_left_right.sql

Error Message:
ORA-00984: column not allowed here.

No BOOLEAN type in ORACLE.
This commit is contained in:
jose vicente ribelles aguilar
2021-11-09 11:35:41 +01:00
committed by GitHub
parent 0361ed59fe
commit e3ea3626cb

View File

@@ -10,5 +10,5 @@
-- Create columns copy_left and copy_right for RelationshipType
-----------------------------------------------------------------------------------
ALTER TABLE relationship_type ADD copy_to_left BOOLEAN DEFAULT FALSE NOT NULL;
ALTER TABLE relationship_type ADD copy_to_right BOOLEAN DEFAULT FALSE NOT NULL;
ALTER TABLE relationship_type ADD copy_to_left NUMBER(1) DEFAULT 0 NOT NULL;
ALTER TABLE relationship_type ADD copy_to_right NUMBER(1) DEFAULT 0 NOT NULL;