Bug 2426: DBRev 18.06.00.002
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
870913b3c3
commit
3f01fcae97
2 changed files with 9 additions and 1 deletions
2
Koha.pm
2
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;
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue