Bug 22600: DBRev 18.12.00.039
authorNick Clemens <nick@bywatersolutions.com>
Wed, 10 Apr 2019 19:55:14 +0000 (19:55 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 10 Apr 2019 19:55:14 +0000 (19:55 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

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

diff --git a/Koha.pm b/Koha.pm
index d876743..20da074 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.038";
+$VERSION = "18.12.00.039";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_22600.perl b/installer/data/mysql/atomicupdate/bug_22600.perl
deleted file mode 100644 (file)
index d33e0a7..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-$DBversion = 'XXX';    # will be replaced by the RM
-if ( CheckVersion($DBversion) ) {
-
-    if ( !column_exists( 'accountlines', 'interface' ) ) {
-        $dbh->do(
-            qq{
-            ALTER TABLE `accountlines`
-            ADD
-              `interface` varchar(16)
-            AFTER
-              `manager_id`;
-          }
-        );
-    }
-
-    $dbh->do(qq{
-        UPDATE
-          `accountlines`
-        SET
-          interface = 'opac'
-        WHERE
-          borrowernumber = manager_id;
-    });
-
-    $dbh->do(qq{
-        UPDATE
-          `accountlines`
-        SET
-          interface = 'cron'
-        WHERE
-          manager_id IS NULL
-        AND
-          branchcode IS NULL;
-    });
-
-    $dbh->do(qq{
-        UPDATE
-          `accountlines`
-        SET
-          interface = 'intranet'
-        WHERE
-          interface IS NULL;
-    });
-
-    $dbh->do(qq{
-        ALTER TABLE `accountlines`
-        MODIFY COLUMN `interface` varchar(16) NOT NULL;
-    });
-
-    SetVersion($DBversion);
-    print "Upgrade to $DBversion done (Bug 22600 - Add interface to accountlines)\n";
-}
index 1abe2ec..d2cb81e 100755 (executable)
@@ -17886,6 +17886,59 @@ if ( CheckVersion($DBversion) ) {
     print "Upgrade to $DBversion done (Bug 22512 - Add status to accountlines)\n";
 }
 
+$DBversion = '18.12.00.039';
+if ( CheckVersion($DBversion) ) {
+
+    if ( !column_exists( 'accountlines', 'interface' ) ) {
+        $dbh->do(
+            qq{
+            ALTER TABLE `accountlines`
+            ADD
+              `interface` varchar(16)
+            AFTER
+              `manager_id`;
+          }
+        );
+    }
+
+    $dbh->do(qq{
+        UPDATE
+          `accountlines`
+        SET
+          interface = 'opac'
+        WHERE
+          borrowernumber = manager_id;
+    });
+
+    $dbh->do(qq{
+        UPDATE
+          `accountlines`
+        SET
+          interface = 'cron'
+        WHERE
+          manager_id IS NULL
+        AND
+          branchcode IS NULL;
+    });
+
+    $dbh->do(qq{
+        UPDATE
+          `accountlines`
+        SET
+          interface = 'intranet'
+        WHERE
+          interface IS NULL;
+    });
+
+    $dbh->do(qq{
+        ALTER TABLE `accountlines`
+        MODIFY COLUMN `interface` varchar(16) NOT NULL;
+    });
+
+    SetVersion($DBversion);
+    print "Upgrade to $DBversion done (Bug 22600 - Add interface to accountlines)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.