From 08a8ea0f88031df718865394e16f608137c781fb Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 27 Sep 2024 15:57:49 +0000 Subject: [PATCH] Bug 37856: DBRev 24.06.00.032 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../{atomicupdate/bug_37856.pl => db_revs/240600032.pl} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename installer/data/mysql/{atomicupdate/bug_37856.pl => db_revs/240600032.pl} (70%) diff --git a/Koha.pm b/Koha.pm index 93469b0a86..eb4d71aad2 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.031"; +$VERSION = "24.06.00.032"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_37856.pl b/installer/data/mysql/db_revs/240600032.pl similarity index 70% rename from installer/data/mysql/atomicupdate/bug_37856.pl rename to installer/data/mysql/db_revs/240600032.pl index 8544c30b5f..a2bbcd1007 100755 --- a/installer/data/mysql/atomicupdate/bug_37856.pl +++ b/installer/data/mysql/db_revs/240600032.pl @@ -3,7 +3,7 @@ use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "37856", - description => "Add service_platform column to erm_usage_data_providers", + description => "Add column 'erm_usage_data_providers.service_platform'", up => sub { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; @@ -14,8 +14,8 @@ return { ALTER TABLE erm_usage_data_providers ADD COLUMN `service_platform` varchar(80) DEFAULT NULL COMMENT 'platform if provider requires it' AFTER `report_types` } ); - say_info( $out, "Bug 37856 - Added service_platform column to table 'erm_usage_data_providers'" ); + say_info( $out, "Added column 'service_platformerm_usage_data_providers'" ); } - say_success( $out, "Bug 37856 - Done" ); + say_success( $out, "Done" ); }, }; -- 2.39.5