From 63f897c06eb96f75d26e0d43a9ca0251919c641d Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 28 Jan 2019 11:45:49 +0000 Subject: [PATCH] Bug 21241: DBRev 18.12.00.009 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- ...ef_to_control_fallback_to_sms_if_no_email_defined.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_21241-add_syspref_to_control_fallback_to_sms_if_no_email_defined.sql diff --git a/Koha.pm b/Koha.pm index 78d50bf41c..fd759888ec 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.008"; +$VERSION = "18.12.00.009"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_21241-add_syspref_to_control_fallback_to_sms_if_no_email_defined.sql b/installer/data/mysql/atomicupdate/bug_21241-add_syspref_to_control_fallback_to_sms_if_no_email_defined.sql deleted file mode 100644 index 1a9443e46c..0000000000 --- a/installer/data/mysql/atomicupdate/bug_21241-add_syspref_to_control_fallback_to_sms_if_no_email_defined.sql +++ /dev/null @@ -1 +0,0 @@ -INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('FallbackToSMSIfNoEmail', 0, 'Enable|Disable', 'Send messages by SMS if no patron email is defined', 'YesNo'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index ffbfba57fa..a67ae902e5 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -17269,6 +17269,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 17047 - Mana knowledge base)\n"; } +$DBversion = '18.12.00.009'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('FallbackToSMSIfNoEmail', 0, 'Enable|Disable', 'Send messages by SMS if no patron email is defined', 'YesNo'); + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 17047 - Mana knowledge base)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.2