Bug 28108: DBRev 20.12.00.049
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 10 May 2021 13:27:04 +0000 (13:27 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 10 May 2021 13:52:53 +0000 (15:52 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha.pm
installer/data/mysql/atomicupdate/claimslog.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 636ca90..2f07bcd 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.048";
+$VERSION = "20.12.00.049";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/claimslog.perl b/installer/data/mysql/atomicupdate/claimslog.perl
deleted file mode 100644 (file)
index 037339c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-$DBversion = 'XXX';    # will be replaced by the RM
-if ( CheckVersion($DBversion) ) {
-    $dbh->do(q{
-        UPDATE action_logs SET module = 'CLAIMS'
-        WHERE module = 'ACQUISITIONS' AND ( action = 'SERIAL CLAIM' OR action = 'ACQUISITION CLAIM')
-    });
-
-    $dbh->do(q{
-        UPDATE systempreferences SET variable = 'ClaimsLog' WHERE variable = 'LetterLog';
-    });
-
-    # Always end with this (adjust the bug info)
-    NewVersion( $DBversion, XXXXX, "Description" );
-}
index e479fde..c555f8f 100755 (executable)
@@ -24250,6 +24250,20 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 26995, "Drop column relationship from borrower tables");
 }
 
+$DBversion = '20.12.00.049';
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+        UPDATE action_logs SET module = 'CLAIMS'
+        WHERE module = 'ACQUISITIONS' AND ( action = 'SERIAL CLAIM' OR action = 'ACQUISITION CLAIM')
+    });
+
+    $dbh->do(q{
+        UPDATE systempreferences SET variable = 'ClaimsLog' WHERE variable = 'LetterLog';
+    });
+
+    NewVersion( $DBversion, 28108, "Move action logs 'SERIAL CLAIM' and 'ACQUISITION CLAIM' to a new 'CLAIMS' module" );
+}
+
 # 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/';