From ca06eccb6a7e26f112fb8e3697dff3b68bebbd3d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 7 May 2021 11:46:52 +0000 Subject: [PATCH] Bug 14723: DBRev 20.12.00.046 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- ...14723_-_Additional_delivery_notes_to_messages.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug-14723_-_Additional_delivery_notes_to_messages.perl diff --git a/Koha.pm b/Koha.pm index 0e3b99c769..e15d45800a 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 = "20.12.00.045"; +$VERSION = "20.12.00.046"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/Bug-14723_-_Additional_delivery_notes_to_messages.perl b/installer/data/mysql/atomicupdate/Bug-14723_-_Additional_delivery_notes_to_messages.perl deleted file mode 100644 index ad7007e2dc..0000000000 --- a/installer/data/mysql/atomicupdate/Bug-14723_-_Additional_delivery_notes_to_messages.perl +++ /dev/null @@ -1,10 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - unless ( column_exists('message_queue', 'delivery_note') ) { - $dbh->do("ALTER TABLE message_queue ADD delivery_note mediumtext AFTER content_type"); - } - - # Always end with this (adjust the bug info) - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 14723 - Additional delivery notes to messages)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c3dff43525..fa79308a9e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24198,6 +24198,17 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 21249, "Adding new system preference SearchLimitLibrary" ); } +$DBversion = '20.12.00.046'; +if( CheckVersion( $DBversion ) ) { + unless ( column_exists('message_queue', 'delivery_note') ) { + $dbh->do(q{ + ALTER TABLE message_queue ADD delivery_note mediumtext AFTER content_type + }); + } + + NewVersion( $DBversion, 14723, "Additional delivery notes to messages" ); +} + # 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.5