Bug 25389: DBRev 19.12.00.089
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Wed, 13 May 2020 09:34:10 +0000 (10:34 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Wed, 13 May 2020 09:36:25 +0000 (10:36 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

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

diff --git a/Koha.pm b/Koha.pm
index aaf86ba..ca16683 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.088";
+$VERSION = "19.12.00.089";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_25389.perl b/installer/data/mysql/atomicupdate/bug_25389.perl
deleted file mode 100644 (file)
index 722a4bf..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-
-    # Migrate LOST_RETURNED to LOST_FOUND
-    $dbh->do(qq{
-        UPDATE
-          accountlines
-        SET
-          credit_type_code = 'LOST_FOUND'
-        WHERE
-          credit_type_code = 'LOST_RETURNED'
-    });
-
-    # Drop LOST_RETURNED credit type
-    $dbh->do(qq{
-        DELETE FROM account_credit_types WHERE code = 'LOST_RETURNED'
-    });
-
-    NewVersion( $DBversion, 25389, "Catch errant cases of LOST_RETURNED");
-}
index 5bbef64..6519068 100755 (executable)
@@ -22107,6 +22107,27 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 24378, "Fix some grammatical errors in default auto renewal notice");
 }
 
+$DBversion = '19.12.00.089';
+if( CheckVersion( $DBversion ) ) {
+
+    # Migrate LOST_RETURNED to LOST_FOUND
+    $dbh->do(qq{
+        UPDATE
+          accountlines
+        SET
+          credit_type_code = 'LOST_FOUND'
+        WHERE
+          credit_type_code = 'LOST_RETURNED'
+    });
+
+    # Drop LOST_RETURNED credit type
+    $dbh->do(qq{
+        DELETE FROM account_credit_types WHERE code = 'LOST_RETURNED'
+    });
+
+    NewVersion( $DBversion, 25389, "Catch errant cases of LOST_RETURNED");
+}
+
 # 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/';