@@ -, +, @@ aqorders.supplierreference --- installer/data/mysql/kohastructure.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ t/db_dependent/Acquisition.t | 3 --- 3 files changed, 9 insertions(+), 4 deletions(-) --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -3055,7 +3055,6 @@ CREATE TABLE `aqorders` ( -- information related to the basket line items `cancellationreason` text default NULL, -- reason of cancellation `order_internalnote` mediumtext, -- notes related to this order line, made for staff `order_vendornote` mediumtext, -- notes related to this order line, made for vendor - `supplierreference` mediumtext, -- not used? always NULL `purchaseordernumber` mediumtext, -- not used? always NULL `basketno` int(11) default NULL, -- links this order line to a specific basket (aqbasket.basketno) `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order line was last modified --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -9531,6 +9531,15 @@ if( CheckVersion($DBversion) ){ $dbh->do("INSERT INTO systempreferences (variable, explanation, type) VALUES('DefaultLongOverdueLostValue', 'Set the LOST value of an item to n when the item has been overdue for more than defaultlongoverduedays days.', 'integer')"); $dbh->do("INSERT INTO systempreferences (variable, explanation, type) VALUES('DefaultLongOverdueDays', 'Set the LOST value of an item when the item has been overdue for more than n days.', 'integer')"); print "Upgrade to $DBversion done (Bug 8337: System preferences for longoverdue cron)\n"; +} + +$DBversion = "3.17.00.XXX"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q| + ALTER TABLE aqorders DROP COLUMN supplierreference; + |); + + print "Upgrade to $DBversion done (Bug 11008 - DROP column aqorders.supplierreference)\n"; SetVersion($DBversion); } --- a/t/db_dependent/Acquisition.t +++ a/t/db_dependent/Acquisition.t @@ -339,7 +339,6 @@ my @expectedfields = qw( unitprice quantityreceived datecancellationprinted - supplierreference purchaseordernumber basketno timestamp @@ -457,7 +456,6 @@ my @base_expectedfields = qw( biblioitemnumber datereceived orderstatus - supplierreference agerestriction budget_branchcode gstrate @@ -578,7 +576,6 @@ ok( creationdate datereceived orderstatus - supplierreference isbn copyrightdate gstrate --