DS-816 Fixed order of search types in XMLUI Advanced Search to be determined by order in config

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@6586 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Peter Dietz
2011-08-24 21:54:54 +00:00
parent 6ea81ecd06
commit 6634eaf8b6
2 changed files with 13 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
--
--
-- database_schema_17-18.sql
--
-- Version: $Revision$
@@ -20,6 +20,7 @@
-- DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST.
-- DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST. DUMP YOUR DATABASE FIRST.
--
BEGIN
-------------------------------------------
-- New column for bitstream order DS-749 --
-------------------------------------------
@@ -27,3 +28,5 @@ ALTER TABLE bundle2bitstream ADD bitstream_order INTEGER;
--Place the sequence id's in the order
UPDATE bundle2bitstream SET bitstream_order=(SELECT sequence_id FROM bitstream WHERE bitstream.bitstream_id=bundle2bitstream.bitstream_id);
END