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

(-)a/installer/data/mysql/kohastructure.sql (-3 / +2 lines)
Lines 1667-1673 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have b Link Here
1667
  `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1667
  `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1668
  `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1668
  `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1669
  `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1669
  `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1670
  `printed` tinyint(1) DEFAULT NULL,
1670
  `printed` DATETIME DEFAULT NULL,
1671
  PRIMARY KEY (`reserve_id`),
1671
  PRIMARY KEY (`reserve_id`),
1672
  KEY `old_reserves_borrowernumber` (`borrowernumber`),
1672
  KEY `old_reserves_borrowernumber` (`borrowernumber`),
1673
  KEY `old_reserves_biblionumber` (`biblionumber`),
1673
  KEY `old_reserves_biblionumber` (`biblionumber`),
Lines 1855-1861 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha Link Here
1855
  `lowestPriority` tinyint(1) NOT NULL,
1855
  `lowestPriority` tinyint(1) NOT NULL,
1856
  `suspend` BOOLEAN NOT NULL DEFAULT 0,
1856
  `suspend` BOOLEAN NOT NULL DEFAULT 0,
1857
  `suspend_until` DATETIME NULL DEFAULT NULL,
1857
  `suspend_until` DATETIME NULL DEFAULT NULL,
1858
  `printed` tinyint(1) DEFAULT NULL,
1858
  `printed` DATETIME DEFAULT NULL,
1859
  PRIMARY KEY (`reserve_id`),
1859
  PRIMARY KEY (`reserve_id`),
1860
  KEY priorityfoundidx (priority,found),
1860
  KEY priorityfoundidx (priority,found),
1861
  KEY `borrowernumber` (`borrowernumber`),
1861
  KEY `borrowernumber` (`borrowernumber`),
1862
- 

Return to bug 8352