mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-08 02:24:18 +00:00
17 lines
628 B
PL/PgSQL
17 lines
628 B
PL/PgSQL
-- 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/
|
|
|
|
-- 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; |