|
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 |
- |
|
|