Bug 28674: Fix typo 'hlpd' in schema comments
authorKatrin Fischer <katrin.fischer.83@web.de>
Sat, 4 Feb 2023 23:04:08 +0000 (00:04 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 7 Feb 2023 13:30:32 +0000 (10:30 -0300)
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>
installer/data/mysql/kohastructure.sql

index ad850ac..df66cee 100644 (file)
@@ -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`),