Bug 13881: DBRev 19.12.00.090
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 18 May 2020 10:43:55 +0000 (11:43 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 18 May 2020 10:43:55 +0000 (11:43 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

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

diff --git a/Koha.pm b/Koha.pm
index ca16683..1462fc5 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 = "19.12.00.089";
+$VERSION = "19.12.00.090";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_13881.perl b/installer/data/mysql/atomicupdate/bug_13881.perl
deleted file mode 100644 (file)
index ac11e53..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-$DBversion = 'XXX';    # will be replaced by the RM
-  if ( CheckVersion($DBversion) ) {
-   
-      $dbh->do(qq{
-          INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
-          ('UseIssueDesks','0','','Use issue desks with circulation.','YesNo')
-      });
-   
-      SetVersion($DBversion);
-      print "Upgrade to $DBversion done (Bug 13881 - Add cash register system preference)\n";
-  }
index 0a0d765..6869273 100755 (executable)
@@ -22142,6 +22142,19 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 25389, "Catch errant cases of LOST_RETURNED");
 }
 
+$DBversion = '19.12.00.090';
+if ( CheckVersion($DBversion) ) {
+
+    $dbh->do(
+        qq{
+          INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
+          ('UseIssueDesks','0','','Use issue desks with circulation.','YesNo')
+      }
+    );
+
+    NewVersion( $DBversion, 13881, "Add issue desks system preference");
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.
 my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';