From c1d72e60df9ac1378ed7a8d0be903ab8be34c86a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 29 Oct 2017 18:42:12 +0100 Subject: [PATCH] Bug 18801: DBRev 16.11.13.001 --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug18801.perl | 15 --------------- installer/data/mysql/updatedatabase.pl | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 16 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug18801.perl diff --git a/Koha.pm b/Koha.pm index 142485774f..d989aee492 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 = "16.11.13.000"; +$VERSION = "16.11.13.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug18801.perl b/installer/data/mysql/atomicupdate/bug18801.perl deleted file mode 100644 index 8a8fd50615..0000000000 --- a/installer/data/mysql/atomicupdate/bug18801.perl +++ /dev/null @@ -1,15 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - # Fetch all auth types - my $authtypes = $dbh->selectcol_arrayref( q|SELECT authtypecode FROM auth_types| ); - - if( grep { $_ eq 'Default' } @$authtypes ) { - # If this exists as an authtypecode, we don't do anything - } else { - # Replace the incorrect Default by empty string - $dbh->do( q|UPDATE auth_header SET authtypecode='' WHERE authtypecode='Default'| ); - } - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 18801 - Update incorrect Default auth type codes)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c6a5329a36..6c2859dc87 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -13890,6 +13890,23 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "16.11.13.001"; +if( CheckVersion( $DBversion ) ) { + # Fetch all auth types + my $authtypes = $dbh->selectcol_arrayref( q|SELECT authtypecode FROM auth_types| ); + + if( grep { $_ eq 'Default' } @$authtypes ) { + # If this exists as an authtypecode, we don't do anything + } else { + # Replace the incorrect Default by empty string + $dbh->do( q|UPDATE auth_header SET authtypecode='' WHERE authtypecode='Default'| ); + } + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 18801 - Update incorrect Default auth type codes)\n"; +} + + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5