From 5cf60b53297910bca2e4d6596a33d70ff4c34d05 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 17 May 2024 07:32:16 +0000 Subject: [PATCH] Bug 28869: DBRev 23.12.00.058 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_28869.pl => db_revs/231200058.pl} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename installer/data/mysql/{atomicupdate/bug_28869.pl => db_revs/231200058.pl} (90%) diff --git a/Koha.pm b/Koha.pm index 5933ef39ee..d700f68059 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 = "23.12.00.057"; +$VERSION = "23.12.00.058"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_28869.pl b/installer/data/mysql/db_revs/231200058.pl similarity index 90% rename from installer/data/mysql/atomicupdate/bug_28869.pl rename to installer/data/mysql/db_revs/231200058.pl index bf8b9136b3..0994a6f012 100755 --- a/installer/data/mysql/atomicupdate/bug_28869.pl +++ b/installer/data/mysql/db_revs/231200058.pl @@ -9,7 +9,7 @@ return { if ( !column_exists( 'authorised_value_categories', 'is_integer_only' ) ) { $dbh->do( q{ -ALTER TABLE authorised_value_categories ADD COLUMN is_integer_only tinyint(1) DEFAULT 0 NOT NULL +ALTER TABLE authorised_value_categories ADD COLUMN is_integer_only tinyint(1) DEFAULT 0 NOT NULL AFTER `is_system` } ); } -- 2.20.1