@@ -, +, @@ biblio_force_item_holds --- installer/data/mysql/kohastructure.sql | 10 ++++++++++ installer/data/mysql/updatedatabase.pl | 14 ++++++++++++++ 2 files changed, 24 insertions(+) --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -132,6 +132,16 @@ CREATE TABLE `biblio` ( -- table that stores bibliographic information ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- +-- 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` -- --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -9732,6 +9732,20 @@ 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 (Bug 13478 - Update OPACItemHolds description)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) --