From a66674a96484124b69d627f6e2e081debafa4a6c Mon Sep 17 00:00:00 2001 From: Brendan Gallagher Date: Tue, 23 Feb 2016 15:33:41 +0000 Subject: [PATCH] DBRev for Bug 13534 - Deleting staff patron will delete tags approved by this patron Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index 1ff9cb9d82..30f1c9512f 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 = "3.23.00.021"; +$VERSION = "3.23.00.022"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4baacb1de6..639ecc59e3 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11773,6 +11773,27 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.022"; + if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + ALTER TABLE tags_all MODIFY COLUMN borrowernumber INT(11); + }); + $dbh->do(q{ + ALTER TABLE tags_all drop FOREIGN KEY tags_borrowers_fk_1; + }); + $dbh->do(q{ + ALTER TABLE tags_all ADD CONSTRAINT `tags_borrowers_fk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE; + }); + $dbh->do(q{ + ALTER TABLE tags_approval DROP FOREIGN KEY tags_approval_borrowers_fk_1; + }); + $dbh->do(q{ + ALTER TABLE tags_approval ADD CONSTRAINT `tags_approval_borrowers_fk_1` FOREIGN KEY (`approved_by`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE; + }); + print "Upgrade to $DBversion done (Bug 13534 - Deleting staff patron will delete tags approved by this patron)\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.5