- Removed DCResult

- Renamed workflow-related columns in Collection:
    reviewers => workflow_step_1
    approvers => workflow_step_2
    editors   => workflow_step 3


git-svn-id: http://scm.dspace.org/svn/repo/trunk@63 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Robert Tansley
2002-05-30 21:02:39 +00:00
parent 963caace58
commit eefb15465a

View File

@@ -226,9 +226,9 @@ CREATE TABLE Collection
license TEXT, license TEXT,
copyright_text TEXT, copyright_text TEXT,
side_bar_text TEXT, side_bar_text TEXT,
reviewers INTEGER REFERENCES EPersonGroup( eperson_group_id ), workflow_step_1 INTEGER REFERENCES EPersonGroup( eperson_group_id ),
approvers INTEGER REFERENCES EPersonGroup( eperson_group_id ), workflow_step_2 INTEGER REFERENCES EPersonGroup( eperson_group_id ),
editors INTEGER REFERENCES EPersonGroup( eperson_group_id ) workflow_step_3 INTEGER REFERENCES EPersonGroup( eperson_group_id )
); );
------------------------------------------------------- -------------------------------------------------------
@@ -394,7 +394,7 @@ CREATE TABLE HistoryState
------------------------------------------------------- -------------------------------------------------------
-- Item2Handle view -- Item2Handle view
------------------------------------------------------- -------------------------------------------------------
-- Note: DSpaceTypes.ITEM = 2 -- Note: org.dspace.core.Constants.ITEM = 2
DROP VIEW Item2Handle; DROP VIEW Item2Handle;
CREATE VIEW Item2Handle as CREATE VIEW Item2Handle as
@@ -418,17 +418,6 @@ WHERE Collection2Item.collection_id = Community2Collection.collection_id
-- Browse subsystem views -- Browse subsystem views
------------------------------------------------------------ ------------------------------------------------------------
-------------------------------------------------------
-- DCResult view
-------------------------------------------------------
DROP VIEW DCResult;
CREATE VIEW DCResult as
SELECT DCValue.*, Item.in_archive, Item.submitter_id
FROM DCValue, Item
WHERE Item.item_id = DCValue.item_id
;
------------------------------------------------------- -------------------------------------------------------
-- ItemsByAuthor table -- ItemsByAuthor table
------------------------------------------------------- -------------------------------------------------------