mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 05:53:08 +00:00

Also, refactored requestitem to be a dspace-api "model", moved all DB logic from XMLUI regarding this module to the dspace-api model. Add the requestitem.request_message to display in the contact-author form, so they can see what the original request message was.
12 lines
452 B
PL/PgSQL
12 lines
452 B
PL/PgSQL
-- http://www.dspace.org/license/
|
|
-- SQL commands to upgrade the Postgres database schema from DSpace 4.x to 5.x
|
|
-- DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST.
|
|
BEGIN;
|
|
|
|
------------------------------------------------------
|
|
-- DS-1945 RequestItem Helpdesk, store request message
|
|
------------------------------------------------------
|
|
ALTER TABLE requestitem ADD request_message TEXT;
|
|
|
|
|
|
COMMIT; |