Bugzilla – Attachment 146268 Details for
Bug 28674
old_reserves.item_level_hold and reserves.item_level_hold comments have typo "hpld" not "hold"
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28674: Fix typo 'hlpd' in schema comments
Bug-28674-Fix-typo-hlpd-in-schema-comments.patch (text/plain), 2.14 KB, created by
Owen Leonard
on 2023-02-06 13:36:15 UTC
(
hide
)
Description:
Bug 28674: Fix typo 'hlpd' in schema comments
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2023-02-06 13:36:15 UTC
Size:
2.14 KB
patch
obsolete
>From caceede8610d77e8fd3a8db4eb23c5b639ef1283 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sun, 5 Feb 2023 00:04:08 +0100 >Subject: [PATCH] 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> >--- > installer/data/mysql/kohastructure.sql | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index ad850ac5c7..df66cee175 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -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`), >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28674
:
146176
|
146268
|
146325