From a42a5ccbbf0d14e4f046307103fcebca17d70eb7 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 20 Dec 2019 16:02:01 +0000 Subject: [PATCH] Bug 24287: Add `trigger` to `branchtransfers` This patch adds the `trigger` field to the `branchtransfers` table to record what triggered a transfer. --- .../data/mysql/atomicupdate/bug_24287.perl | 18 ++++++++++++++++++ installer/data/mysql/kohastructure.sql | 1 + 2 files changed, 19 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_24287.perl diff --git a/installer/data/mysql/atomicupdate/bug_24287.perl b/installer/data/mysql/atomicupdate/bug_24287.perl new file mode 100644 index 0000000000..65c59b938a --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_24287.perl @@ -0,0 +1,18 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + + unless ( column_exists('branchtransfers', 'trigger') ) { + $dbh->do( + qq{ + ALTER TABLE branchtransfers + ADD + `trigger` enum('Manual') + AFTER + comments + } + ); + } + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 24287 - Add 'trigger' field to transfers table)\n"; +} diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 328b1acf96..4454b14969 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -951,6 +951,7 @@ CREATE TABLE `branchtransfers` ( -- information for items that are in transit be `datearrived` datetime default NULL, -- the date the transfer arrived at its destination `tobranch` varchar(10) NOT NULL default '', -- the branch the transfer was going to `comments` LONGTEXT, -- any comments related to the transfer + `trigger` ENUM('Manual'), -- what triggered the transfer PRIMARY KEY (`branchtransfer_id`), KEY `frombranch` (`frombranch`), KEY `tobranch` (`tobranch`), -- 2.20.1