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

Return to bug 14695