From 463e7de027716aaf909e49a930a9e962fe458014 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 21 Aug 2018 11:49:55 +0000 Subject: [PATCH] Bug 21144: DBRev 17.11.09.002 Signed-off-by: Nick Clemens (cherry picked from commit df06587b763de2acd2d4e1afa3da8ad1841f7577) Signed-off-by: Martin Renvoize (cherry picked from commit 4ee626a6f362bbf96342613b7f64f1b0e3b2503e) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug21144_roadtype.sql | 3 --- installer/data/mysql/updatedatabase.pl | 7 +++++++ 3 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug21144_roadtype.sql diff --git a/Koha.pm b/Koha.pm index 0806062b68..96f6f358ce 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 = "17.11.09.001"; +$VERSION = "17.11.09.002"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug21144_roadtype.sql b/installer/data/mysql/atomicupdate/bug21144_roadtype.sql deleted file mode 100644 index c162be977c..0000000000 --- a/installer/data/mysql/atomicupdate/bug21144_roadtype.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('ROADTYPE'); - ---Bug 21144: Add ROADTYPE to default authorised values categories diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4e55b7edae..5e71bdc4fb 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -15181,6 +15181,13 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21226 - Remove prefs OCLCAffiliateID, XISBN and XISBNDailyLimit)\n"; } +$DBversion = '17.11.09.002'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q|INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('ROADTYPE');|); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 21144: Add ROADTYPE to default authorised values categories)\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