|
Lines 2340-2356
CREATE TABLE `zebraqueue` (
Link Here
|
| 2340 |
KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`) |
2340 |
KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`) |
| 2341 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2341 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 2342 |
|
2342 |
|
| 2343 |
-- |
|
|
| 2344 |
-- Table structure for table `services_throttle` |
| 2345 |
-- |
| 2346 |
|
| 2347 |
DROP TABLE IF EXISTS `services_throttle`; |
| 2348 |
CREATE TABLE `services_throttle` ( |
| 2349 |
`service_type` varchar(10) NOT NULL default '', |
| 2350 |
`service_count` varchar(45) default NULL, |
| 2351 |
PRIMARY KEY (`service_type`) |
| 2352 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 2353 |
|
| 2354 |
-- |
2343 |
-- |
| 2355 |
-- Table structure for table `language_subtag_registry` |
2344 |
-- Table structure for table `language_subtag_registry` |
| 2356 |
-- http://www.w3.org/International/articles/language-tags/ |
2345 |
-- http://www.w3.org/International/articles/language-tags/ |