Bug 2426: DBRev 18.06.00.002
authorNick Clemens <nick@bywatersolutions.com>
Fri, 8 Jun 2018 12:20:13 +0000 (12:20 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 8 Jun 2018 13:47:58 +0000 (09:47 -0400)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 3ff1087..9a6a505 100644 (file)
--- 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;
index c616f8a..b38db83 100755 (executable)
@@ -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.