Bug 20997: DBRev 18.06.00.013
authorNick Clemens <nick@bywatersolutions.com>
Fri, 10 Aug 2018 12:38:34 +0000 (12:38 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 10 Aug 2018 12:38:34 +0000 (12:38 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/bug_20997.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index ba450bc..a475070 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.012";
+$VERSION = "18.06.00.013";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_20997.perl b/installer/data/mysql/atomicupdate/bug_20997.perl
deleted file mode 100644 (file)
index 49f2278..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-$DBversion = 'XXX';
-if( CheckVersion( $DBversion ) ) {
-
-    # Add 'credit_applied' offset type
-    $dbh->do(q{
-        INSERT IGNORE INTO `account_offset_types` (`type`) VALUES ('Credit Applied');
-    });
-
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 20997 - Add Koha::Account::Line::apply)\n";
-}
index 24e78f5..5567c3b 100755 (executable)
@@ -16228,6 +16228,15 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 11911 - Add separate permission for managing suggestions)\n";
 }
 
+$DBversion = '18.06.00.013';
+if( CheckVersion( $DBversion ) ) {
+    $dbh->do(q{
+        INSERT IGNORE INTO `account_offset_types` (`type`) VALUES ('Credit Applied');
+    });
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 20997 - Add Koha::Account::Line::apply)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.