From ade53625863175ffdbc3201de847754fdebf838d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 28 Oct 2016 15:43:20 +0000 Subject: [PATCH] Bug 17397 - DBRev 16.06.00.044 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_17397.sql | 3 --- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_17397.sql diff --git a/Koha.pm b/Koha.pm index 5b59f99c6a..138b12f0e7 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 = "16.06.00.043"; +$VERSION = "16.06.00.044"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_17397.sql b/installer/data/mysql/atomicupdate/bug_17397.sql deleted file mode 100644 index f571b7236d..0000000000 --- a/installer/data/mysql/atomicupdate/bug_17397.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE `messages` -ADD `manager_id` int(11) NULL, -ADD FOREIGN KEY (`manager_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 929dce5cf4..7b9b2c043e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -13577,6 +13577,18 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '16.06.00.044'; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + ALTER TABLE `messages` + ADD `manager_id` int(11) NULL, + ADD FOREIGN KEY (`manager_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL; + }); + + print "Upgrade to $DBversion done (Bug 17397 - Show name of librarian who created circulation message)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.2