From: Jean-André Santoni Date: Sun, 1 Nov 2009 13:03:09 +0000 (+0100) Subject: [3.2.x](bug #3624) Per-basketgroup delivery place X-Git-Tag: v3.02.00-alpha~54^2~106 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=69af3053e303e68749bb28c8006cdfd0cbbe84fe;p=koha.git [3.2.x](bug #3624) Per-basketgroup delivery place Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea. Database schema and PDF generation have been modified to reflect these changes. --- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index d70b34477a..137169e8f0 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -3157,6 +3157,16 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } +$DBversion = "3.01.00.122"; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + $dbh->do(qq{ + ALTER TABLE aqbasketgroups ADD deliveryplace VARCHAR(10), deliverycomment VARCHAR(255); + }); + + print "Upgrade to $DBversion done (isbd updated)\n"; + SetVersion ($DBversion); +} + =item DropAllForeignKeys($table)