From 0a2a9f659e033df5d0e17ad0b219792bc369a9f9 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 25 Sep 2025 19:32:28 +0000 Subject: [PATCH] Bug 23260: Fix DB update to NOT allow for NULL borrowernumber --- installer/data/mysql/atomicupdate/bug_23260.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_23260.pl b/installer/data/mysql/atomicupdate/bug_23260.pl index db25c498192..a59abb272e0 100644 --- a/installer/data/mysql/atomicupdate/bug_23260.pl +++ b/installer/data/mysql/atomicupdate/bug_23260.pl @@ -9,10 +9,6 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - # Do you stuffs here - $dbh->do("ALTER TABLE items_last_borrower MODIFY COLUMN `borrowernumber` int(11) NULL"); - say_success( $out, "items_last_borrower updated to allow NULL borrowernumbers" ); - $dbh->do( q{ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES -- 2.39.5