Lines 504-509
CREATE TABLE `aqbooksellers` (
Link Here
|
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 |
`language` varchar(255) DEFAULT NULL COMMENT 'the language for the vendor', |
|
|
507 |
`lib_group_visibility` varchar(255) DEFAULT NULL COMMENT 'the library groups the vendor is visible to', |
507 |
PRIMARY KEY (`id`), |
508 |
PRIMARY KEY (`id`), |
508 |
KEY `listprice` (`listprice`), |
509 |
KEY `listprice` (`listprice`), |
509 |
KEY `invoiceprice` (`invoiceprice`), |
510 |
KEY `invoiceprice` (`invoiceprice`), |
Lines 4328-4333
CREATE TABLE `library_groups` (
Link Here
|
4328 |
`ft_search_groups_staff` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for opac side search groups', |
4329 |
`ft_search_groups_staff` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for opac side search groups', |
4329 |
`ft_local_hold_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as pick up location for holds', |
4330 |
`ft_local_hold_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as pick up location for holds', |
4330 |
`ft_local_float_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as part of float group', |
4331 |
`ft_local_float_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as part of float group', |
|
|
4332 |
`ft_acquisitions` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group in the acquisitions module', |
4331 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Date and time of creation', |
4333 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Date and time of creation', |
4332 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date and time of last', |
4334 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date and time of last', |
4333 |
PRIMARY KEY (`id`), |
4335 |
PRIMARY KEY (`id`), |
4334 |
- |
|
|