BZ3624, proposed patch for kohastructure.sql rewritten
authorPaul Poulain <paul.poulain@biblibre.com>
Mon, 7 Mar 2011 18:12:44 +0000 (13:12 -0500)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 7 Mar 2011 20:37:32 +0000 (09:37 +1300)
Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
installer/data/mysql/kohastructure.sql

index da1528c..a62e07c 100644 (file)
@@ -2352,6 +2352,9 @@ CREATE TABLE `aqbasketgroups` (
   `name` varchar(50) default NULL,
   `closed` tinyint(1) default NULL,
   `booksellerid` int(11) NOT NULL,
+  `deliveryplace` varchar(10) default NULL,
+  `deliverycomment` varchar(255) default NULL,
+  `billingplace` varchar(10) default NULL,
   PRIMARY KEY  (`id`),
   KEY `booksellerid` (`booksellerid`),
   CONSTRAINT `aqbasketgroups_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE ON DELETE CASCADE