From 44e6f6d9eba833d35e3ba89348ab5a47bc9c25c7 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 19 Mar 2020 08:54:38 +0000 Subject: [PATCH] Bug 24298: DBRev 19.12.00.043 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_24298.perl | 23 ------------------ installer/data/mysql/updatedatabase.pl | 24 +++++++++++++++++++ 3 files changed, 25 insertions(+), 24 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_24298.perl diff --git a/Koha.pm b/Koha.pm index ad01568352..49ce03cfd1 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 = "19.12.00.042"; +$VERSION = "19.12.00.043"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_24298.perl b/installer/data/mysql/atomicupdate/bug_24298.perl deleted file mode 100644 index 695354b39d..0000000000 --- a/installer/data/mysql/atomicupdate/bug_24298.perl +++ /dev/null @@ -1,23 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - - # Add return reasons to enum - $dbh->do( - qq{ - ALTER TABLE - `branchtransfers` - MODIFY COLUMN - `reason` enum( - 'Manual', - 'StockrotationAdvance', - 'StockrotationRepatriation', - 'ReturnToHome', - 'ReturnToHolding' - ) - AFTER `comments` - } - ); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 24296 - Add 'return' reasons to branchtransfers enum)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 62b447cc14..ec00dd7923 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -21134,6 +21134,30 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 22821 - Add reply_address to message_queue)\n"; } +$DBversion = '19.12.00.043'; +if( CheckVersion( $DBversion ) ) { + + # Add return reasons to enum + $dbh->do( + qq{ + ALTER TABLE + `branchtransfers` + MODIFY COLUMN + `reason` enum( + 'Manual', + 'StockrotationAdvance', + 'StockrotationRepatriation', + 'ReturnToHome', + 'ReturnToHolding' + ) + AFTER `comments` + } + ); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 24296 - Add 'return' reasons to branchtransfers enum)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5