|
Lines 2325-2341
CREATE TABLE `zebraqueue` (
Link Here
|
| 2325 |
KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`) |
2325 |
KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`) |
| 2326 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2326 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 2327 |
|
2327 |
|
| 2328 |
-- |
|
|
| 2329 |
-- Table structure for table `services_throttle` |
| 2330 |
-- |
| 2331 |
|
| 2332 |
DROP TABLE IF EXISTS `services_throttle`; |
| 2333 |
CREATE TABLE `services_throttle` ( |
| 2334 |
`service_type` varchar(10) NOT NULL default '', |
| 2335 |
`service_count` varchar(45) default NULL, |
| 2336 |
PRIMARY KEY (`service_type`) |
| 2337 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 2338 |
|
| 2339 |
-- |
2328 |
-- |
| 2340 |
-- Table structure for table `language_subtag_registry` |
2329 |
-- Table structure for table `language_subtag_registry` |
| 2341 |
-- http://www.w3.org/International/articles/language-tags/ |
2330 |
-- http://www.w3.org/International/articles/language-tags/ |