From fc4d99d2d799f4c9ac785dbea9c60570b509e185 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 19 Feb 2020 16:11:13 +0000 Subject: [PATCH] Bug 11297: DBRev 19.12.00.026 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- .../atomicupdate/Bug11297_z3950servers_attributes.perl | 9 --------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.perl diff --git a/Koha.pm b/Koha.pm index 69639e7fc8..3efb8b17a4 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 = "19.12.00.025"; +$VERSION = "19.12.00.026"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.perl b/installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.perl deleted file mode 100644 index 2250a26cff..0000000000 --- a/installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.perl +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - if( !column_exists( 'z3950servers', 'attributes' ) ) { - $dbh->do( "ALTER TABLE z3950servers ADD COLUMN attributes VARCHAR(255) after add_xslt" ); - } - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 11297 - Add support for custom PQF attributes for Z39.50 server searches)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 8e357e8ab6..9beaf46414 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -20850,6 +20850,16 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug XXXXX - add DumpSearchQueryTemplate syspref)\n"; } +$DBversion = '19.12.00.026'; +if( CheckVersion( $DBversion ) ) { + if( !column_exists( 'z3950servers', 'attributes' ) ) { + $dbh->do( "ALTER TABLE z3950servers ADD COLUMN attributes VARCHAR(255) after add_xslt" ); + } + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 11297 - Add support for custom PQF attributes for Z39.50 server searches)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5