From 3f837f9885ab96a7993bd69446bb04820122ef23 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 12 Aug 2019 14:37:23 +0100 Subject: [PATCH] Bug 23416: DBRev 19.05.03.001 Signed-off-by: Martin Renvoize (cherry picked from commit 78c2800bc833759302bf68e1dc3a4fed26a5163e) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- .../Bug_23416_add_PreserveSerialNotes_pref.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug_23416_add_PreserveSerialNotes_pref.perl diff --git a/Koha.pm b/Koha.pm index 1bd80473a9..9843b46639 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.05.03.000"; +$VERSION = "19.05.03.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/Bug_23416_add_PreserveSerialNotes_pref.perl b/installer/data/mysql/atomicupdate/Bug_23416_add_PreserveSerialNotes_pref.perl deleted file mode 100644 index 96e321eb59..0000000000 --- a/installer/data/mysql/atomicupdate/Bug_23416_add_PreserveSerialNotes_pref.perl +++ /dev/null @@ -1,10 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - $dbh->do(q| - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('PreserveSerialNotes','1','','When a new "Expected" issue is generated, should it be prefilled with last created issue notes?','YesNo'); - |); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 23416 - Add PreserveSerialNotes syspref)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 91855a893d..ebce9b6168 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -18771,6 +18771,17 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (19.05.03 release)\n"; } +$DBversion = '19.05.03.001'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q| + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('PreserveSerialNotes','1','','When a new "Expected" issue is generated, should it be prefilled with last created issue notes?','YesNo'); + |); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23416 - Add PreserveSerialNotes syspref)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5