Lines 4584-4589
CREATE TABLE `marc_order_accounts` (
Link Here
|
4584 |
`encoding` varchar(50) DEFAULT NULL COMMENT 'file encoding', |
4584 |
`encoding` varchar(50) DEFAULT NULL COMMENT 'file encoding', |
4585 |
`match_field` varchar(10) DEFAULT NULL COMMENT 'the field that a vendor account has been mapped to in a marc record', |
4585 |
`match_field` varchar(10) DEFAULT NULL COMMENT 'the field that a vendor account has been mapped to in a marc record', |
4586 |
`match_value` varchar(50) DEFAULT NULL COMMENT 'the value to be matched against the marc record', |
4586 |
`match_value` varchar(50) DEFAULT NULL COMMENT 'the value to be matched against the marc record', |
|
|
4587 |
`basket_name_field` varchar(10) DEFAULT NULL COMMENT 'the field that a vendor can use to include a basket name that will be used to create the basket for the file', |
4587 |
PRIMARY KEY (`id`), |
4588 |
PRIMARY KEY (`id`), |
4588 |
KEY `marc_ordering_account_ibfk_1` (`vendor_id`), |
4589 |
KEY `marc_ordering_account_ibfk_1` (`vendor_id`), |
4589 |
KEY `marc_ordering_account_ibfk_2` (`budget_id`), |
4590 |
KEY `marc_ordering_account_ibfk_2` (`budget_id`), |
4590 |
- |
|
|