DBRev up for Bug 16200 - 'Hold waiting too long' fee has a translation
authorBrendan Gallagher <brendan@bywatersolutions.com>
Tue, 31 May 2016 08:56:42 +0000 (08:56 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Tue, 31 May 2016 08:56:42 +0000 (08:56 +0000)
problem

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/Bug_16200_Convert_expired_holds_to_accounttype_HE.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 8173895..39d2523 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 = "16.06.00.000";
+$VERSION = "16.06.00.001";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/Bug_16200_Convert_expired_holds_to_accounttype_HE.sql b/installer/data/mysql/atomicupdate/Bug_16200_Convert_expired_holds_to_accounttype_HE.sql
deleted file mode 100644 (file)
index b1c957d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-UPDATE accountlines SET accounttype='HE', description=itemnumber WHERE (description REGEXP '^Hold waiting too long [0-9]+') AND accounttype='F';
index fd1fd4e..657ba4e 100755 (executable)
@@ -12605,6 +12605,15 @@ if ( CheckVersion($DBversion) ) {
             SetVersion($DBversion);
 }
 
+$DBversion = "16.06.00.001";
+if ( CheckVersion($DBversion) ) {
+        $dbh->do(q{
+                UPDATE accountlines SET accounttype='HE', description=itemnumber WHERE (description REGEXP '^Hold waiting too long [0-9]+') AND accounttype='F';
+    });
+            print "Upgrade to $DBversion done (Bug 16200 - 'Hold waiting too long' fee has a translation problem)\n";
+                SetVersion($DBversion);
+}
+
 
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068