View | Details | Raw Unified | Return to bug 6716
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 2734-2740 CREATE TABLE `aqorderdelivery` ( Link Here
2734
--
2734
--
2735
2735
2736
DROP TABLE IF EXISTS `aqorders`;
2736
DROP TABLE IF EXISTS `aqorders`;
2737
CREATE TABLE `aqorders` ( --information related to the basket line items
2737
CREATE TABLE `aqorders` ( -- information related to the basket line items
2738
  `ordernumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha to each line
2738
  `ordernumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha to each line
2739
  `biblionumber` int(11) default NULL, -- links the order to the biblio being ordered (biblio.biblionumber)
2739
  `biblionumber` int(11) default NULL, -- links the order to the biblio being ordered (biblio.biblionumber)
2740
  `entrydate` date default NULL, -- the date the bib was added to the basket
2740
  `entrydate` date default NULL, -- the date the bib was added to the basket
2741
- 

Return to bug 6716