Bug 23173: DBRev 19.12.00.065
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 6 Apr 2020 10:11:12 +0000 (11:11 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 6 Apr 2020 10:15:07 +0000 (11:15 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha.pm
installer/data/mysql/atomicupdate/bug_23173_add_ILLCheckAvailability_syspref.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 62e32d0..49df317 100644 (file)
--- 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.064";
+$VERSION = "19.12.00.065";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_23173_add_ILLCheckAvailability_syspref.perl b/installer/data/mysql/atomicupdate/bug_23173_add_ILLCheckAvailability_syspref.perl
deleted file mode 100644 (file)
index a20ebfa..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-    # you can use $dbh here like:
-    # $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('ILLCheckAvailability', '0', 'If enabled, during the ILL request process third party sources will be checked for current availability', '', 'YesNo'); | );
-
-    # Always end with this (adjust the bug info)
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 23173 - Add ILLCheckAvailability syspref)\n";
-}
index 8619b8e..4cf630f 100755 (executable)
@@ -21453,6 +21453,17 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 4944, "Add new system preference OpacNoItemTypeImages");
 }
 
+$DBversion = '19.12.00.065';
+if( CheckVersion( $DBversion ) ) {
+
+    $dbh->do( q| 
+        INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) 
+        VALUES ('ILLCheckAvailability', '0', 'If enabled, during the ILL request process third party sources will be checked for current availability', '', 'YesNo')
+    | );
+
+    NewVersion( $DBversion, 23173, "Add ILLCheckAvailability syspref");
+}
+
 # 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/';