Bug 27281: DBRev 20.12.00.038
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 23 Apr 2021 09:40:10 +0000 (09:40 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 23 Apr 2021 09:58:49 +0000 (11:58 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha.pm
installer/data/mysql/atomicupdate/bug_27281.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index db89d56..7d40261 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.037";
+$VERSION = "20.12.00.038";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_27281.perl b/installer/data/mysql/atomicupdate/bug_27281.perl
deleted file mode 100644 (file)
index 0d18397..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-
-    # Add 'LostItem' to reserves cancellation_reason enum
-    $dbh->do(
-        qq{
-            ALTER TABLE
-                `branchtransfers`
-            MODIFY COLUMN
-                `cancellation_reason` enum(
-                    'Manual',
-                    'StockrotationAdvance',
-                    'StockrotationRepatriation',
-                    'ReturnToHome',
-                    'ReturnToHolding',
-                    'RotatingCollection',
-                    'Reserve',
-                    'LostReserve',
-                    'CancelReserve',
-                    'ItemLost'
-                )
-            AFTER `comments`
-          }
-    );
-
-    # Always end with this (adjust the bug info)
-    NewVersion( $DBversion, 27281, "Add 'ItemLost' to cancellation_reason enum");
-}
index d5dbdb5..c9dc560 100755 (executable)
@@ -23900,6 +23900,34 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 23971, "Add new system preference AcquisitionLog");
 }
 
+$DBversion = '20.12.00.038';
+if( CheckVersion( $DBversion ) ) {
+
+    # Add 'ItemLost' to reserves cancellation_reason enum
+    $dbh->do(
+        q{
+            ALTER TABLE
+                `branchtransfers`
+            MODIFY COLUMN
+                `cancellation_reason` enum(
+                    'Manual',
+                    'StockrotationAdvance',
+                    'StockrotationRepatriation',
+                    'ReturnToHome',
+                    'ReturnToHolding',
+                    'RotatingCollection',
+                    'Reserve',
+                    'LostReserve',
+                    'CancelReserve',
+                    'ItemLost'
+                )
+            AFTER `comments`
+          }
+    );
+
+    NewVersion( $DBversion, 27281, "Add 'ItemLost' to branchtransfers.cancellation_reason enum");
+}
+
 # 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/';