Bug 19794: DBRev 17.12.00.032
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 19 Apr 2018 15:26:21 +0000 (12:26 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 19 Apr 2018 15:32:19 +0000 (12:32 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha.pm
installer/data/mysql/atomicupdate/bug_19794_update_rlist.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index c1b8da3..3367c94 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 = "17.12.00.031";
+$VERSION = "17.12.00.032";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_19794_update_rlist.sql b/installer/data/mysql/atomicupdate/bug_19794_update_rlist.sql
deleted file mode 100644 (file)
index 05fe219..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-UPDATE letter SET code = "SERIAL_ALERT" WHERE code = "RLIST";
-UPDATE letter SET name = "New serial issue" WHERE name = "Routing List";
-UPDATE subscription SET letter = "SERIAL_ALERT" WHERE letter = "RLIST";
--- print Bug 19794: Rename RLIST notice to SERIAL_ALERT
index 615871a..3530f2a 100755 (executable)
@@ -15840,6 +15840,22 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 11674 - Add system preference MarcFieldDocURL)\n";
 }
 
+$DBversion = '17.12.00.032';
+if( CheckVersion( $DBversion ) ) {
+    $dbh->do(q|
+        UPDATE letter SET code = "SERIAL_ALERT" WHERE code = "RLIST";
+    |);
+    $dbh->do(q|
+        UPDATE letter SET name = "New serial issue" WHERE name = "Routing List";
+    |);
+    $dbh->do(q|
+        UPDATE subscription SET letter = "SERIAL_ALERT" WHERE letter = "RLIST";
+    |);
+
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 19794 - Rename RLIST notice to SERIAL_ALERT)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.