Change description column in orcid tables to TEXT type

This commit is contained in:
max.nuding
2023-03-29 15:12:07 +02:00
parent bdb88724ac
commit db3ebe84bd
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
--
-- The contents of this file are subject to the license and copyright
-- detailed in the LICENSE and NOTICE files at the root of the source
-- tree and available online at
--
-- http://www.dspace.org/license/
--
ALTER TABLE orcid_history ALTER COLUMN description SET DATA TYPE CLOB;
ALTER TABLE orcid_queue ALTER COLUMN description SET DATA TYPE CLOB;

View File

@@ -0,0 +1,10 @@
--
-- The contents of this file are subject to the license and copyright
-- detailed in the LICENSE and NOTICE files at the root of the source
-- tree and available online at
--
-- http://www.dspace.org/license/
--
ALTER TABLE orcid_history MODIFY (description CLOB);
ALTER TABLE orcid_queue MODIFY (description CLOB);

View File

@@ -0,0 +1,10 @@
--
-- The contents of this file are subject to the license and copyright
-- detailed in the LICENSE and NOTICE files at the root of the source
-- tree and available online at
--
-- http://www.dspace.org/license/
--
ALTER TABLE orcid_history ALTER COLUMN description TYPE TEXT;
ALTER TABLE orcid_queue ALTER COLUMN description TYPE TEXT;