From d594dace7c376e05923918939b67bda5ad39ca8a Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 21 Aug 2025 20:40:10 +0000 Subject: [PATCH] Bug 20644: (follow-up) Fix atomicupdate --- installer/data/mysql/db_revs/250600010.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/db_revs/250600010.pl b/installer/data/mysql/db_revs/250600010.pl index a44b06df40e..04619957fab 100755 --- a/installer/data/mysql/db_revs/250600010.pl +++ b/installer/data/mysql/db_revs/250600010.pl @@ -11,7 +11,7 @@ return { $dbh->do( q{ ALTER TABLE itemtypes - ADD IF NOT EXISTS checkprevcheckout enum('yes', 'no', 'inherit') NOT NULL DEFAULT 'inherit' COMMENT 'produce a warning for a patron if a item of this type has previously been checked out to the same patron if ''yes'', not if ''no'', defer to category setting if ''inherit''.' + ADD COLUMN checkprevcheckout enum('yes', 'no', 'inherit') NOT NULL DEFAULT 'inherit' COMMENT 'produce a warning for a patron if a item of this type has previously been checked out to the same patron if ''yes'', not if ''no'', defer to category setting if ''inherit''.' AFTER automatic_checkin; } ); -- 2.39.5