mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 07:23:08 +00:00
DS-1945 Add request_message to requestitem DB table
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.
This commit is contained in:
12
dspace/etc/postgres/database_schema_4_5.sql
Normal file
12
dspace/etc/postgres/database_schema_4_5.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- 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;
|
Reference in New Issue
Block a user