From dbec302ef7d8d052fed2ca1d201079d5dd9d3e6f Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 18 Dec 2014 11:59:13 +0100 Subject: [PATCH] Bug 13478: Database revision for table biblio_force_item_holds Content-Type: text/plain; charset=utf-8 TEST PLAN: [1] Run the database revision. Check if the new table is present. --- installer/data/mysql/kohastructure.sql | 10 ++++++++++ installer/data/mysql/updatedatabase.pl | 15 +++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 1f22106..3f1d1f6 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -132,6 +132,16 @@ CREATE TABLE `biblio` ( -- table that stores bibliographic information ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- +-- Table structure for table `biblio_force_item_holds` +-- + +DROP TABLE IF EXISTS `biblio_force_item_holds`; +CREATE TABLE `biblio_force_item_holds` ( -- biblios with forced item holds + `biblionumber` int NOT NULL, -- primary key + PRIMARY KEY (`biblionumber`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- -- Table structure for table `biblio_framework` -- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index d2b03c3..0b39964 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -9656,6 +9656,21 @@ if(CheckVersion($DBversion)) { SetVersion($DBversion); } + +$DBversion = "3.19.00.XXX"; +if ( CheckVersion($DBversion) ) { + $dbh->do(qq| + CREATE TABLE biblio_force_item_holds + (biblionumber int NOT NULL PRIMARY KEY); + |); + $dbh->do(qq| + UPDATE systempreferences SET explanation = 'Allow OPAC users to place hold on specific items. If No, users can only request next available copy. If Yes, users can choose between next available and specific copy. If Force, users *must* choose a specific copy. Selectiveforce works on specific biblios.' + WHERE variable = 'OPACItemHolds'; + |); + print "Upgrade to $DBversion done (Update OPACItemHolds description)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) -- 1.7.7.6