Skip to content

Commit

Permalink
Change description column in orcid tables to TEXT type
Browse files Browse the repository at this point in the history
  • Loading branch information
max.nuding committed Mar 29, 2023
1 parent bdb8872 commit db3ebe8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
@@ -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;
@@ -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);
@@ -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;

0 comments on commit db3ebe8

Please sign in to comment.