Lines 503-508
CREATE TABLE `aqbooksellers` (
Link Here
|
503 |
`deliverytime` int(11) DEFAULT NULL COMMENT 'vendor delivery time', |
503 |
`deliverytime` int(11) DEFAULT NULL COMMENT 'vendor delivery time', |
504 |
`external_id` varchar(255) DEFAULT NULL COMMENT 'external id of the vendor', |
504 |
`external_id` varchar(255) DEFAULT NULL COMMENT 'external id of the vendor', |
505 |
`payment_method` varchar(255) DEFAULT NULL COMMENT 'the payment method for the vendor', |
505 |
`payment_method` varchar(255) DEFAULT NULL COMMENT 'the payment method for the vendor', |
|
|
506 |
`language` varchar(255) DEFAULT NULL COMMENT 'the language for the vendor', |
506 |
PRIMARY KEY (`id`), |
507 |
PRIMARY KEY (`id`), |
507 |
KEY `listprice` (`listprice`), |
508 |
KEY `listprice` (`listprice`), |
508 |
KEY `invoiceprice` (`invoiceprice`), |
509 |
KEY `invoiceprice` (`invoiceprice`), |
509 |
- |
|
|