Bug 27835: DBRev 20.12.00.025
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 18 Mar 2021 14:04:47 +0000 (15:04 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 18 Mar 2021 14:04:47 +0000 (15:04 +0100)
Koha.pm
installer/data/mysql/atomicupdate/bug_27835.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 6469513..f295463 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 = "20.12.00.024";
+$VERSION = "20.12.00.025";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_27835.perl b/installer/data/mysql/atomicupdate/bug_27835.perl
deleted file mode 100644 (file)
index b921007..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-
-    $dbh->do(q|
-        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
-        VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo')
-    |);
-
-    NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays");
-}
index 126e9bb..e408a5c 100755 (executable)
@@ -23728,6 +23728,17 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 18532, 'Messaging preferences for auto renewals' );
 }
 
+$DBversion = '20.12.00.025';
+if( CheckVersion( $DBversion ) ) {
+
+    $dbh->do(q|
+        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
+        VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo')
+    |);
+
+    NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays");
+}
+
 # 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/';