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

(-)a/installer/data/mysql/kohastructure.sql (-3 / +2 lines)
Lines 1695-1701 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have b Link Here
1695
  `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1695
  `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1696
  `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1696
  `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1697
  `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1697
  `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1698
  `printed` tinyint(1) DEFAULT NULL,
1698
  `printed` DATETIME DEFAULT NULL,
1699
  PRIMARY KEY (`reserve_id`),
1699
  PRIMARY KEY (`reserve_id`),
1700
  KEY `old_reserves_borrowernumber` (`borrowernumber`),
1700
  KEY `old_reserves_borrowernumber` (`borrowernumber`),
1701
  KEY `old_reserves_biblionumber` (`biblionumber`),
1701
  KEY `old_reserves_biblionumber` (`biblionumber`),
Lines 1873-1879 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha Link Here
1873
  `lowestPriority` tinyint(1) NOT NULL,
1873
  `lowestPriority` tinyint(1) NOT NULL,
1874
  `suspend` BOOLEAN NOT NULL DEFAULT 0,
1874
  `suspend` BOOLEAN NOT NULL DEFAULT 0,
1875
  `suspend_until` DATETIME NULL DEFAULT NULL,
1875
  `suspend_until` DATETIME NULL DEFAULT NULL,
1876
  `printed` tinyint(1) DEFAULT NULL,
1876
  `printed` DATETIME DEFAULT NULL,
1877
  PRIMARY KEY (`reserve_id`),
1877
  PRIMARY KEY (`reserve_id`),
1878
  KEY priorityfoundidx (priority,found),
1878
  KEY priorityfoundidx (priority,found),
1879
  KEY `borrowernumber` (`borrowernumber`),
1879
  KEY `borrowernumber` (`borrowernumber`),
1880
- 

Return to bug 8352