From 8c1bd93a3b1fd37e157173e8a1e813def70b1fa3 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 12 Apr 2019 02:41:53 +0000 Subject: [PATCH] Bug 10796: DBRev 18.12.00.045 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- .../bug_10796_pwd_change_by_category.perl | 14 -------------- installer/data/mysql/updatedatabase.pl | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 15 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_10796_pwd_change_by_category.perl diff --git a/Koha.pm b/Koha.pm index 98986b2c3e..37162d9e9a 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.12.00.044"; +$VERSION = "18.12.00.045"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_10796_pwd_change_by_category.perl b/installer/data/mysql/atomicupdate/bug_10796_pwd_change_by_category.perl deleted file mode 100644 index 83fec3deb6..0000000000 --- a/installer/data/mysql/atomicupdate/bug_10796_pwd_change_by_category.perl +++ /dev/null @@ -1,14 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - - if ( !column_exists( 'categories', 'change_password' ) ) { - $dbh->do(q{ - ALTER TABLE categories - ADD COLUMN change_password TINYINT(1) NULL DEFAULT NULL - AFTER reset_password - }); - } - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 10796 - Patron password change by category)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 6fde5dad56..edcddebdae 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -17990,6 +17990,21 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21890 - Patron password reset by category)\n"; } +$DBversion = '18.12.00.045'; +if( CheckVersion( $DBversion ) ) { + + if ( !column_exists( 'categories', 'change_password' ) ) { + $dbh->do(q{ + ALTER TABLE categories + ADD COLUMN change_password TINYINT(1) NULL DEFAULT NULL + AFTER reset_password + }); + } + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 10796 - Patron password change by category)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1