View | Details | Raw Unified | Return to bug 14695
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_7710.sql (+1 lines)
Line 0 Link Here
1
ALTER TABLE issuingrules ADD COLUMN holds_per_record SMALLINT(6) NOT NULL DEFAULT 1 AFTER reservesallowed;
(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 1211-1216 CREATE TABLE `issuingrules` ( -- circulation and fine rules Link Here
1211
  `norenewalbefore` int(4) default NULL, -- no renewal allowed until X days or hours before due date.
1211
  `norenewalbefore` int(4) default NULL, -- no renewal allowed until X days or hours before due date.
1212
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1212
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1213
  `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
1213
  `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
1214
  `holds_per_record` SMALLINT(6) NOT NULL DEFAULT 1, -- How many holds a patron can have on a given bib
1214
  `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
1215
  `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
1215
  overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
1216
  overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
1216
  cap_fine_to_replacement_price BOOLEAN NOT NULL DEFAULT  '0', -- cap the fine based on item's replacement price
1217
  cap_fine_to_replacement_price BOOLEAN NOT NULL DEFAULT  '0', -- cap the fine based on item's replacement price
1217
- 

Return to bug 14695