From 93d7ae2792d8148f2c9a4be975ddf94b4147b118 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 30 Oct 2024 08:13:36 +0000 Subject: [PATCH] Bug 37511: DBRev 24.06.00.053 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../{atomicupdate/bug_37511.pl => db_revs/240600053.pl} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename installer/data/mysql/{atomicupdate/bug_37511.pl => db_revs/240600053.pl} (87%) diff --git a/Koha.pm b/Koha.pm index 35c82c66be..e7a77d7174 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "24.06.00.052"; +$VERSION = "24.06.00.053"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_37511.pl b/installer/data/mysql/db_revs/240600053.pl similarity index 87% rename from installer/data/mysql/atomicupdate/bug_37511.pl rename to installer/data/mysql/db_revs/240600053.pl index 23960e1cdf..29bcda1c2a 100755 --- a/installer/data/mysql/atomicupdate/bug_37511.pl +++ b/installer/data/mysql/db_revs/240600053.pl @@ -13,10 +13,10 @@ return { try { $dbh->do( q{ - ALTER TABLE `currency` ADD COLUMN `p_cs_precedes` tinyint(1) DEFAULT 1 + ALTER TABLE `currency` ADD COLUMN `p_cs_precedes` tinyint(1) DEFAULT 1 AFTER p_sep_by_space } ); - say_success( $out, "Added column p_cs_precedes" ); + say_success( $out, "Added column 'currency.p_cs_precedes'" ); } catch { say_failure( $out, @@ -24,7 +24,7 @@ return { ); }; } else { - say_info( $out, "Column 'currency.p_cs_precedes' already exists!" ); + say_info( $out, "Column 'currency.p_cs_precedes' already exists" ); } }, }; -- 2.39.5