From b8dd36ecf1d4a9a3af899effae6a43e93adfe5c4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 22 Nov 2016 11:38:26 +0000 Subject: [PATCH] Bug 17391: Update DB rev (3.22.12.003) Signed-off-by: Julian Maurice --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_17391.sql | 2 -- installer/data/mysql/updatedatabase.pl | 16 ++++++++++++++++ 3 files changed, 17 insertions(+), 3 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_17391.sql diff --git a/Koha.pm b/Koha.pm index 3696cda56c..2467fffff5 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 = "3.22.12.002"; +$VERSION = "3.22.12.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_17391.sql b/installer/data/mysql/atomicupdate/bug_17391.sql deleted file mode 100644 index 3d0e7807b8..0000000000 --- a/installer/data/mysql/atomicupdate/bug_17391.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('ReplytoDefault', '', NULL, 'The default email address to be set as replyto.', 'Free'); -INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('ReturnpathDefault', '', NULL, 'The default email address to be set as return-path', 'Free'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 317d5f5ac8..2d820e0a37 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11887,6 +11887,22 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '3.22.12.003'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q| + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) + VALUES ('ReplytoDefault', '', NULL, 'The default email address to be set as replyto.', 'Free'); + |); + + $dbh->do(q| + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) + VALUES ('ReturnpathDefault', '', NULL, 'The default email address to be set as return-path', 'Free'); + |); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 17391 - ReturnpathDefault and ReplyToDefault missing from syspref.sql)\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