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 1189-1194 CREATE TABLE `issuingrules` ( -- circulation and fine rules Link Here
1189
  `norenewalbefore` int(4) default NULL, -- no renewal allowed until X days or hours before due date. In the unit set in issuingrules.lengthunit
1189
  `norenewalbefore` int(4) default NULL, -- no renewal allowed until X days or hours before due date. In the unit set in issuingrules.lengthunit
1190
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1190
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1191
  `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
1191
  `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
1192
  `holds_per_record` SMALLINT(6) NOT NULL DEFAULT 1, -- How many holds a patron can have on a given bib
1192
  `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
1193
  `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
1193
  overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
1194
  overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
1194
  cap_fine_to_replacement_price BOOLEAN NOT NULL DEFAULT  '0', -- cap the fine based on item's replacement price
1195
  cap_fine_to_replacement_price BOOLEAN NOT NULL DEFAULT  '0', -- cap the fine based on item's replacement price
1195
- 

Return to bug 14695