Bug 21639: DBRev 18.06.00.045
authorNick Clemens <nick@bywatersolutions.com>
Fri, 26 Oct 2018 17:09:18 +0000 (17:09 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 26 Oct 2018 17:09:50 +0000 (17:09 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/Bug_21639_add_phone_transports.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 36fa8dd..5e19833 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.06.00.044";
+$VERSION = "18.06.00.045";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/Bug_21639_add_phone_transports.perl b/installer/data/mysql/atomicupdate/Bug_21639_add_phone_transports.perl
deleted file mode 100644 (file)
index 1b5bf7d..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-$DBversion = 'XXX';  # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-    $dbh->do(q(
-        INSERT IGNORE INTO message_transports
-        (message_attribute_id,message_transport_type,is_digest,letter_module,letter_code)
-        VALUES
-        (2, 'phone', 0, 'circulation', 'PREDUE'),
-        (2, 'phone', 1, 'circulation', 'PREDUEDGST'),
-        (4, 'phone', 0, 'reserves',    'HOLD')
-        ));
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 21639 - Add phone transports by default)\n";
-}
index 460324b..d3245a1 100755 (executable)
@@ -16700,6 +16700,20 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 15766: Add column creator_batches.description)\n";
 }
 
+$DBversion = '18.06.00.045';
+if( CheckVersion( $DBversion ) ) {
+    $dbh->do(q(
+        INSERT IGNORE INTO message_transports
+        (message_attribute_id,message_transport_type,is_digest,letter_module,letter_code)
+        VALUES
+        (2, 'phone', 0, 'circulation', 'PREDUE'),
+        (2, 'phone', 1, 'circulation', 'PREDUEDGST'),
+        (4, 'phone', 0, 'reserves',    'HOLD')
+        ));
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 21639 - Add phone transports by default)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.