@@ -, +, @@ --- .../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 --- a/installer/data/mysql/atomicupdate/bug_24287.perl +++ a/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"; +} --- a/installer/data/mysql/kohastructure.sql +++ a/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`), --