Bug 22607: DBRev 18.05.11.001
authorLucas Gass <lucas@bywatersolutions.com>
Tue, 23 Apr 2019 12:37:54 +0000 (12:37 +0000)
committerLucas Gass <lucas@bywatersolutions.com>
Tue, 23 Apr 2019 12:37:54 +0000 (12:37 +0000)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>

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

diff --git a/Koha.pm b/Koha.pm
index a6c52b6..14cc8d2 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.05.11.000";
+$VERSION = "18.05.11.001";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/Bug22607_set_issues_renewals_default_to_zero.perl b/installer/data/mysql/atomicupdate/Bug22607_set_issues_renewals_default_to_zero.perl
deleted file mode 100644 (file)
index be7157f..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-
-    $dbh->do( "UPDATE issues SET renewals = 0 WHERE renewals IS NULL" );
-    $dbh->do( "UPDATE old_issues SET renewals = 0 WHERE renewals IS NULL" );
-
-    $dbh->do( "ALTER TABLE issues MODIFY COLUMN renewals tinyint(4) NOT NULL default 0");
-    $dbh->do( "ALTER TABLE old_issues MODIFY COLUMN renewals tinyint(4) NOT NULL default 0");
-
-    # Always end with this (adjust the bug info)
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug XXXXX - Set default value of issues.renewals to 0)\n";
-}
index e973bbe..914392a 100755 (executable)
@@ -16342,6 +16342,20 @@ if ( CheckVersion($DBversion) ) {
             SetVersion ($DBversion);
         }
 
+$DBversion = '18.05.11.001';
+if( CheckVersion( $DBversion ) ) {
+
+    $dbh->do( "UPDATE issues SET renewals = 0 WHERE renewals IS NULL" );
+    $dbh->do( "UPDATE old_issues SET renewals = 0 WHERE renewals IS NULL" );
+
+    $dbh->do( "ALTER TABLE issues MODIFY COLUMN renewals tinyint(4) NOT NULL default 0");
+    $dbh->do( "ALTER TABLE old_issues MODIFY COLUMN renewals tinyint(4) NOT NULL default 0");
+
+    # Always end with this (adjust the bug info)
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 22607 - Set default value of issues.renewals to 0)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.