From 075cd4b9378facce1d3919fb5ed0c44c29ee4d46 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Fri, 8 Apr 2022 15:06:03 +0200 Subject: [PATCH] Bug 20517: DBRev 21.12.00.023 Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- .../mysql/atomicupdate/bug20517-sort-bin.perl | 8 -------- installer/data/mysql/db_revs/211200023.pl | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug20517-sort-bin.perl create mode 100755 installer/data/mysql/db_revs/211200023.pl diff --git a/Koha.pm b/Koha.pm index 147532de66..be8663776c 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 = "21.12.00.022"; +$VERSION = "21.12.00.023"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug20517-sort-bin.perl b/installer/data/mysql/atomicupdate/bug20517-sort-bin.perl deleted file mode 100644 index 1462118f5a..0000000000 --- a/installer/data/mysql/atomicupdate/bug20517-sort-bin.perl +++ /dev/null @@ -1,8 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),; - }); - NewVersion( $DBversion, 20517, "Add SIP2SortBinMapping system preference"); -} diff --git a/installer/data/mysql/db_revs/211200023.pl b/installer/data/mysql/db_revs/211200023.pl new file mode 100755 index 0000000000..172a881db1 --- /dev/null +++ b/installer/data/mysql/db_revs/211200023.pl @@ -0,0 +1,15 @@ +use Modern::Perl; + +return { + bug_number => "20517", + description => "Add SIP2SortBinMapping system preference", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + # Do you stuffs here + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'); + }); + }, +}; -- 2.20.1