Bug 22518: DBRev 18.12.00.036
authorNick Clemens <nick@bywatersolutions.com>
Fri, 29 Mar 2019 11:44:55 +0000 (11:44 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 29 Mar 2019 11:44:55 +0000 (11:44 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

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

diff --git a/Koha.pm b/Koha.pm
index 65b1e35..809b540 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 = "18.12.00.035";
+$VERSION = "18.12.00.036";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_22518.perl b/installer/data/mysql/atomicupdate/bug_22518.perl
deleted file mode 100644 (file)
index e0b924c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-$DBversion = 'XXX';    # will be replaced by the RM
-if ( CheckVersion($DBversion) ) {
-
-    my $rows = $dbh->do(
-        qq{
-        UPDATE `accountlines`
-        SET
-          `accounttype` = 'FU'
-        WHERE
-          `accounttype` = 'O'
-      }
-    );
-
-    SetVersion($DBversion);
-    printf "Upgrade to $DBversion done (Bug 22518 - Fix accounttype 'O' to 'FU' - %d updated)\n", $rows;
-}
index dc509d5..4f76b76 100755 (executable)
@@ -17836,6 +17836,23 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 19722 - Add a MaxItemsToDisplayForBatchMod preference)\n";
 }
 
+$DBversion = '18.12.00.036';
+if ( CheckVersion($DBversion) ) {
+
+    my $rows = $dbh->do(
+        qq{
+        UPDATE `accountlines`
+        SET
+          `accounttype` = 'FU'
+        WHERE
+          `accounttype` = 'O'
+      }
+    );
+
+    SetVersion($DBversion);
+    printf "Upgrade to $DBversion done (Bug 22518 - Fix accounttype 'O' to 'FU' - %d updated)\n", $rows;
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.