From 8a2c5344d7910d60e0f04ca531e17250753755a7 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 9 Oct 2018 12:55:05 +0000 Subject: [PATCH] Bug 15520: DBRev 18.06.00.039 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- .../bug_15520-add_manage_circ_rules_restricted.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_15520-add_manage_circ_rules_restricted.sql diff --git a/Koha.pm b/Koha.pm index 42d9884166..5d02f2180c 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.038"; +$VERSION = "18.06.00.039"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_15520-add_manage_circ_rules_restricted.sql b/installer/data/mysql/atomicupdate/bug_15520-add_manage_circ_rules_restricted.sql deleted file mode 100644 index c7e99ceb3d..0000000000 --- a/installer/data/mysql/atomicupdate/bug_15520-add_manage_circ_rules_restricted.sql +++ /dev/null @@ -1 +0,0 @@ -INSERT IGNORE INTO `permissions` (module_bit, code, description) VALUES(3, 'manage_circ_rules_from_any_libraries', 'Manage circ rules for any libraries'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 2b8c498d56..21d65ca70e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16552,6 +16552,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21417 - EDI ordering fails when basket and EAN libraries do not match)\n"; } +$DBversion = '18.06.00.039'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO `permissions` (module_bit, code, description) VALUES(3, 'manage_circ_rules_from_any_libraries', 'Manage circ rules for any libraries'); + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 15520 - Add more granular permission for only editing own library's circ rules)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5