Bug 28674: Fix typo 'hlpd' in schema comments
Fixes the lines for old_reserves.item_level_hold and reserves.item_level_hold comments to read 'hold' instead of 'hpld' To test: * The easiest way to verify this change is by looking at the patch itself Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
37220779fe
commit
241ea08348
1 changed files with 2 additions and 2 deletions
|
@ -4487,7 +4487,7 @@ CREATE TABLE `old_reserves` (
|
|||
`suspend` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'in this hold suspended (1 for yes, 0 for no)',
|
||||
`suspend_until` datetime DEFAULT NULL COMMENT 'the date this hold is suspended until (NULL for infinitely)',
|
||||
`itemtype` varchar(10) DEFAULT NULL COMMENT 'If record level hold, the optional itemtype of the item the patron is requesting',
|
||||
`item_level_hold` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is the hpld placed at item level',
|
||||
`item_level_hold` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is the hold placed at item level',
|
||||
`non_priority` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is this a non priority hold',
|
||||
PRIMARY KEY (`reserve_id`),
|
||||
KEY `old_reserves_borrowernumber` (`borrowernumber`),
|
||||
|
@ -4936,7 +4936,7 @@ CREATE TABLE `reserves` (
|
|||
`suspend` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`suspend_until` datetime DEFAULT NULL,
|
||||
`itemtype` varchar(10) DEFAULT NULL COMMENT 'If record level hold, the optional itemtype of the item the patron is requesting',
|
||||
`item_level_hold` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is the hpld placed at item level',
|
||||
`item_level_hold` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is the hold placed at item level',
|
||||
`non_priority` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is this a non priority hold',
|
||||
PRIMARY KEY (`reserve_id`),
|
||||
KEY `priorityfoundidx` (`priority`,`found`),
|
||||
|
|
Loading…
Reference in a new issue