From 046c93d68273d350d4be3c0b17123df5ad968cb0 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 10 Mar 2025 10:39:36 +0000 Subject: [PATCH] Bug 38663: DBRev 24.12.00.018 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_38663.pl => db_revs/241200018.pl} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename installer/data/mysql/{atomicupdate/bug_38663.pl => db_revs/241200018.pl} (88%) diff --git a/Koha.pm b/Koha.pm index 983db0982c..3453ed9c39 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.12.00.017"; +$VERSION = "24.12.00.018"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_38663.pl b/installer/data/mysql/db_revs/241200018.pl similarity index 88% rename from installer/data/mysql/atomicupdate/bug_38663.pl rename to installer/data/mysql/db_revs/241200018.pl index 1f2b0277fb..088f9349d1 100755 --- a/installer/data/mysql/atomicupdate/bug_38663.pl +++ b/installer/data/mysql/db_revs/241200018.pl @@ -16,6 +16,6 @@ return { $dbh->do(q{ ALTER TABLE additional_field_values RENAME COLUMN new_record_id TO record_id; }); - say_success( $out, "Converted record_id to VARCHAR" ); + say_success( $out, "Converted additional_field_values.record_id to VARCHAR" ); }, };