From 86db304cd45ad2fc2f59bde30ae261b18831e8c6 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 14 Apr 2020 16:25:31 +0100 Subject: [PATCH] Bug 22784: DBRev 19.12.00.069 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_22784.perl | 11 ----------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22784.perl diff --git a/Koha.pm b/Koha.pm index 1c06c80302..01e170f779 100644 --- 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 index ca7a68a08d..0000000000 --- a/installer/data/mysql/atomicupdate/bug_22784.perl +++ /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"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 2cb8dd349b..3b7e9811c1 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -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/'; -- 2.39.2