From 3f01fcae9723edf0485f431878a34551e814090a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 8 Jun 2018 12:20:13 +0000 Subject: [PATCH] Bug 2426: DBRev 18.06.00.002 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index 3ff1087a7d..9a6a50591f 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 = "18.06.00.001"; +$VERSION = "18.06.00.002"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c616f8af4d..b38db83e40 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16072,6 +16072,14 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 3849- Improve descriptions of granular acquisition permissions)\n"; } +$DBversion = '18.06.00.002'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{DELETE FROM userflags WHERE bit = 12 AND flag = 'management';}); + $dbh->do(q{UPDATE borrowers SET flags = flags - ( flags & (1<<12) ) WHERE flags & (1 << 12);}); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 2426 - Remove deprecated management permission)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1