Bug 22784: DBRev 19.12.00.069
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 14 Apr 2020 15:25:31 +0000 (16:25 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 14 Apr 2020 15:25:31 +0000 (16:25 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

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

diff --git a/Koha.pm b/Koha.pm
index 1c06c80..01e170f 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.068";
+$VERSION = "19.12.00.069";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_22784.perl b/installer/data/mysql/atomicupdate/bug_22784.perl
deleted file mode 100644 (file)
index ca7a68a..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-    if( !column_exists( 'suggestions', 'archived' ) ) {
-        $dbh->do(q|
-            ALTER TABLE suggestions ADD COLUMN archived INT(1) NOT NULL DEFAULT 0 AFTER `STATUS`;
-        |);
-    }
-
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 22784 - Add a new suggestions.archived column)\n";
-}
index 2cb8dd3..3b7e981 100755 (executable)
@@ -21542,6 +21542,17 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 21190, "Add prefs AuthFailureLog and AuthSuccessLog");
 }
 
+$DBversion = '19.12.00.069';
+if( CheckVersion( $DBversion ) ) {
+    if( !column_exists( 'suggestions', 'archived' ) ) {
+        $dbh->do(q|
+            ALTER TABLE suggestions ADD COLUMN archived INT(1) NOT NULL DEFAULT 0 AFTER `STATUS`;
+        |);
+    }
+
+    NewVersion( $DBversion, 22784, "Add a new suggestions.archived column");
+}
+
 # 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/';