From 7d67e541e752a561e04f3682abf9f8471aa4c3fb Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 31 Jul 2020 21:17:49 +0000 Subject: [PATCH] Bug 25709: DBRev 20.05.02.008 Signed-off-by: Lucas Gass --- Koha.pm | 2 +- .../mysql/atomicupdate/rename_preference_NotesToHide.perl | 5 ----- installer/data/mysql/updatedatabase.pl | 6 ++++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/rename_preference_NotesToHide.perl diff --git a/Koha.pm b/Koha.pm index cdaf21abb9..dd5acde375 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 = "20.05.02.007"; +$VERSION = "20.05.02.008"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/rename_preference_NotesToHide.perl b/installer/data/mysql/atomicupdate/rename_preference_NotesToHide.perl deleted file mode 100644 index 90a4e730ec..0000000000 --- a/installer/data/mysql/atomicupdate/rename_preference_NotesToHide.perl +++ /dev/null @@ -1,5 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE systempreferences SET variable='NotesToHide' WHERE variable = 'NotesBlacklist'" ); - NewVersion( $DBversion, 25709, "Rename systempreference to NotesToHide"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 66b5af9293..a1093deb55 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22356,6 +22356,12 @@ if( CheckVersion( $DBversion ) ) { NewVersion ($DBversion, 23797, "Convert OpacLoginInstructions system preference to news block"); } +$DBversion = '20.05.02.008'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE systempreferences SET variable='NotesToHide' WHERE variable = 'NotesBlacklist'" ); + NewVersion( $DBversion, 25709, "Rename systempreference to NotesToHide"); +} + # 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