diff --git a/code/web/bootstrap.php b/code/web/bootstrap.php index 0d89618537..f4ba484fbb 100644 --- a/code/web/bootstrap.php +++ b/code/web/bootstrap.php @@ -414,14 +414,12 @@ function getValidServerNames(): array { function getGitBranch() { global $interface; - $branchName = ''; - $branchNameWithCommit = ''; - $files = []; - foreach (glob('release_notes/*.MD') as $filename) { + foreach (glob(ROOT_DIR . '/release_notes/*.MD') as $filename) { if (preg_match('/\d{2}\.\d{2}\.\d{2}\.MD/', $filename)) { $tmp = str_replace('.MD', '', $filename); - $tmp = str_replace('release_notes/', '', $tmp); + /** @noinspection RegExpRedundantEscape */ + $tmp = preg_replace('~.*release_notes[\\/]~', '', $tmp); $files[] = $tmp; } } diff --git a/code/web/cron/createDefaultDatabaseScript.php b/code/web/cron/createDefaultDatabaseScript.php index 5e4a068c82..2928dd080a 100644 --- a/code/web/cron/createDefaultDatabaseScript.php +++ b/code/web/cron/createDefaultDatabaseScript.php @@ -73,7 +73,30 @@ fwrite($fhnd, "INSERT INTO library (libraryId, subdomain, displayName, finePaymentType, repeatSearchOption, allowPinReset, loginFormUsernameLabel, loginFormPasswordLabel, isDefault, browseCategoryGroupId, groupedWorkDisplaySettingId) VALUES (1,'main','Main Library',0, 'none', 0, 'Library Barcode', 'PIN / Password', 1, 1, 1);\n"); fwrite($fhnd, "INSERT INTO list_indexing_settings VALUES (1,1,0,0);\n"); fwrite($fhnd, "INSERT INTO location (locationId, code, displayName, libraryId, groupedWorkDisplaySettingId, browseCategoryGroupId)VALUES (1,'main','Main Library',1, 1, 1);\n"); -fwrite($fhnd, "INSERT INTO materials_request_status VALUES (1,'Request Pending',1,0,'',1,0,-1),(2,'Already owned/On order',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The Library already owns this item or it is already on order. Please access our catalog to place this item on hold. Please check our online catalog periodically to put a hold for this item.',0,0,-1),(3,'Item purchased',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Outcome: The library is purchasing the item you requested. Please check our online catalog periodically to put yourself on hold for this item. We anticipate that this item will be available soon for you to place a hold.',0,0,-1),(4,'Referred to Collection Development - Adult',0,0,'',1,0,-1),(5,'Referred to Collection Development - J/YA',0,0,'',1,0,-1),(6,'Referred to Collection Development - AV',0,0,'',1,0,-1),(7,'ILL Under Review',0,0,'',1,0,-1),(8,'Request Referred to ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The library\'s Interlibrary loan department is reviewing your request. We will attempt to borrow this item from another system. This process generally takes about 2 - 6 weeks.',1,0,-1),(9,'Request Filled by ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Our Interlibrary Loan Department is set to borrow this item from another library.',0,0,-1),(10,'Ineligible ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Your library account is not eligible for interlibrary loan at this time.',0,0,-1),(11,'Not enough info - please contact Collection Development to clarify',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We need more specific information in order to locate the exact item you need. Please re-submit your request with more details.',1,0,-1),(12,'Unable to acquire the item - out of print',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is out of print.',0,0,-1),(13,'Unable to acquire the item - not available in the US',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available in the US.',0,0,-1),(14,'Unable to acquire the item - not available from vendor',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available from a preferred vendor.',0,0,-1),(15,'Unable to acquire the item - not published',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested has not yet been published. Please check our catalog when the publication date draws near.',0,0,-1),(16,'Unable to acquire the item - price',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.',0,0,-1),(17,'Unable to acquire the item - publication date',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.',0,0,-1),(18,'Unavailable',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested cannot be purchased at this time from any of our regular suppliers and is not available from any of our lending libraries.',0,0,-1),(19,'Cancelled by Patron',0,0,'',0,1,-1),(20,'Cancelled - Duplicate Request',0,0,'',0,0,-1);\n"); +fwrite($fhnd, "INSERT INTO `materials_request_status` (`id`, `description`, `isDefault`, `sendEmailToPatron`, `emailTemplate`, `isOpen`, `isPatronCancel`, `libraryId`, `checkForHolds`, `holdPlacedSuccessfully`, `holdFailed`, `holdNotNeeded`) VALUES + (1, 'Request Pending', 1, 0, '', 1, 0, -1, 0, 0, 0, 0), + (2, 'Already owned/On order', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The Library already owns this item or it is already on order. Please access our catalog to place this item on hold. Please check our online catalog periodically to put a hold for this item.', 0, 0, -1, 0, 0, 0, 0), + (3, 'Item purchased', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Outcome: The library is purchasing the item you requested. Please check our online catalog periodically to put yourself on hold for this item. We anticipate that this item will be available soon for you to place a hold.', 1, 0, -1, 1, 0, 0, 0), + (4, 'Referred to Collection Development - Adult', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (5, 'Referred to Collection Development - J/YA', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (6, 'Referred to Collection Development - AV', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (7, 'ILL Under Review', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (8, 'Request Referred to ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The library\'s Interlibrary loan department is reviewing your request. We will attempt to borrow this item from another system. This process generally takes about 2 - 6 weeks.', 1, 0, -1, 0, 0, 0, 0), + (9, 'Request Filled by ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Our Interlibrary Loan Department is set to borrow this item from another library.', 0, 0, -1, 0, 0, 0, 0), + (10, 'Ineligible ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Your library account is not eligible for interlibrary loan at this time.', 0, 0, -1, 0, 0, 0, 0), + (11, 'Not enough info - please contact Collection Development to clarify', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We need more specific information in order to locate the exact item you need. Please re-submit your request with more details.', 1, 0, -1, 0, 0, 0, 0), + (12, 'Unable to acquire the item - out of print', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is out of print.', 0, 0, -1, 0, 0, 0, 0), + (13, 'Unable to acquire the item - not available in the US', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available in the US.', 0, 0, -1, 0, 0, 0, 0), + (14, 'Unable to acquire the item - not available from vendor', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available from a preferred vendor.', 0, 0, -1, 0, 0, 0, 0), + (15, 'Unable to acquire the item - not published', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested has not yet been published. Please check our catalog when the publication date draws near.', 0, 0, -1, 0, 0, 0, 0), + (16, 'Unable to acquire the item - price', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.', 0, 0, -1, 0, 0, 0, 0), + (17, 'Unable to acquire the item - publication date', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.', 0, 0, -1, 0, 0, 0, 0), + (18, 'Unavailable', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested cannot be purchased at this time from any of our regular suppliers and is not available from any of our lending libraries.', 0, 0, -1, 0, 0, 0, 0), + (19, 'Cancelled by Patron', 0, 0, '', 0, 1, -1, 0, 0, 0, 0), + (20, 'Cancelled - Duplicate Request', 0, 0, '', 0, 0, -1, 0, 0, 0, 0), + (21, 'Hold Placed', 0, 1, '0', 0, 0, -1, 0, 1, 0, 0), + (22, 'Hold Failed', 0, 1, '0', 0, 0, -1, 0, 0, 1, 0), + (23, 'Hold Not Needed', 0, 1, '0', 0, 0, -1, 0, 0, 0, 1);\n"); /** @noinspection SqlWithoutWhere */ fwrite($fhnd, "UPDATE modules set enabled=0;UPDATE modules set enabled=1 where name in ('Side Loads', 'User Lists');\n"); fwrite($fhnd, "INSERT INTO system_variables (currencyCode, storeRecordDetailsInSolr, storeRecordDetailsInDatabase, indexVersion, searchVersion, appScheme, trackIpAddresses) VALUES ('USD', 0, 1, 2, 2, 'aspen-lida', 0); \n"); diff --git a/code/web/release_notes/24.10.00.MD b/code/web/release_notes/24.10.00.MD index e7192e44ef..e344cc55cd 100644 --- a/code/web/release_notes/24.10.00.MD +++ b/code/web/release_notes/24.10.00.MD @@ -176,6 +176,7 @@ - When batch updating enumerations, display the label for the new value rather than the internal value. (*MDN*) - Remove debugging code when sending emails with SMTP (*MAF*, *MDN*) - Fix an issue where EBSCO EDS search errors were echoed to the UI on the search page (visible to any visitor) by adding the error message to the logs instead. (*CZ*) +- Fix unit tests related to loading the current branch. (*MDN*) ## This release includes code contributions from ###ByWater Solutions diff --git a/code/web/sys/DBMaintenance/version_updates/24.10.00.php b/code/web/sys/DBMaintenance/version_updates/24.10.00.php index c79b3a4d3e..55b9965268 100644 --- a/code/web/sys/DBMaintenance/version_updates/24.10.00.php +++ b/code/web/sys/DBMaintenance/version_updates/24.10.00.php @@ -110,12 +110,12 @@ function getUpdates24_10_00(): array { 'continueOnError' => false, 'sql' => [ "UPDATE materials_request_status SET isOpen = 1, checkForHolds = 1 where description='Item purchased' and libraryId = -1", - "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, holdPlacedSuccessfully, libraryId) - VALUES ('Hold Placed', 1, '{title} has been received by the library and you have been added to the hold queue. + "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, isPatronCancel, holdPlacedSuccessfully, libraryId) + VALUES ('Hold Placed', 1, 0, '{title} has been received by the library and you have been added to the hold queue. Thank you for your purchase suggestion!', 0, 1, -1)", - "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, holdFailed, libraryId) - VALUES ('Hold Failed', 1, '{title} has been received by the library, however we were not able to add you to the hold queue. Please ensure that your account is in good standing and then visit our catalog to place your hold. + "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, isPatronCancel, holdFailed, libraryId) + VALUES ('Hold Failed', 1, 0, '{title} has been received by the library, however we were not able to add you to the hold queue. Please ensure that your account is in good standing and then visit our catalog to place your hold. Thanks', 0, 1, -1)", ] @@ -125,8 +125,8 @@ function getUpdates24_10_00(): array { 'description' => 'Update default material request statuses pt 2', 'continueOnError' => false, 'sql' => [ - "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, holdNotNeeded, libraryId) - VALUES ('Hold Not Needed', 1, '', 0, 1, -1)", + "INSERT INTO materials_request_status (description, sendEmailToPatron, emailTemplate, isOpen, isPatronCancel, holdNotNeeded, libraryId) + VALUES ('Hold Not Needed', 1, 0, '', 0, 1, -1)", ] ], //update_default_request_statuses_2 'materials_request_hold_candidate_generation_log' => [ diff --git a/install/aspen.sql b/install/aspen.sql index bbbfaf464b..48f247378a 100644 --- a/install/aspen.sql +++ b/install/aspen.sql @@ -208,6 +208,7 @@ CREATE TABLE `aspen_lida_general_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `autoRotateCard` tinyint(1) DEFAULT 0, + `enableSelfRegistration` tinyint(4) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS aspen_lida_location_settings; @@ -227,6 +228,7 @@ CREATE TABLE `aspen_lida_notification_setting` ( `notifySavedSearch` tinyint(1) DEFAULT 0, `notifyCustom` tinyint(1) DEFAULT 0, `notifyAccount` tinyint(1) DEFAULT 0, + `ilsNotificationSettingId` int(11) DEFAULT -1, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -448,7 +450,7 @@ CREATE TABLE `aspen_usage` ( `summonSearches` int(11) DEFAULT 0, PRIMARY KEY (`id`), KEY `instance` (`instance`,`year`,`month`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS assabet_events; CREATE TABLE `assabet_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -840,6 +842,7 @@ CREATE TABLE `cloud_library_settings` ( `runFullUpdate` tinyint(1) DEFAULT 0, `lastUpdateOfChangedRecords` int(11) DEFAULT 0, `lastUpdateOfAllRecords` int(11) DEFAULT 0, + `useAlternateLibraryCard` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS cloud_library_title; @@ -1115,7 +1118,7 @@ CREATE TABLE `db_update` ( LOCK TABLES `db_update` WRITE; /*!40000 ALTER TABLE `db_update` DISABLE KEYS */; -INSERT INTO `db_update` VALUES ('21_07_00_full_extract_for_koha','2021-05-29 17:13:17'),('2fa_permissions','2022-01-05 21:15:07'),('accelerated_reader','2019-11-18 17:53:46'),('accessibleBrowseCategories','2024-06-25 15:05:22'),('account_linking_setting_by_ptype','2022-12-28 00:13:51'),('account_link_remove_setting_by_ptype','2023-02-13 14:56:53'),('account_profiles_1','2019-01-28 20:59:02'),('account_profiles_2','2019-11-18 17:53:57'),('account_profiles_3','2019-11-18 17:53:57'),('account_profiles_4','2019-11-18 17:53:57'),('account_profiles_5','2019-11-18 17:53:58'),('account_profiles_admin_login_configuration','2021-02-12 22:47:29'),('account_profiles_api_version','2020-11-16 18:34:53'),('account_profiles_domain','2021-04-08 13:50:39'),('account_profiles_ils','2020-01-03 19:47:11'),('account_profiles_oauth','2019-11-18 17:53:58'),('account_profiles_staff_information','2021-03-26 19:02:34'),('account_profiles_workstation_id','2021-04-08 13:50:39'),('account_profile_carlx_database_view_version','2024-03-25 16:02:12'),('account_profile_increaseDatabaseNameLength','2021-11-16 04:58:47'),('account_profile_libraryForRecordingPayments','2021-11-16 05:33:08'),('account_profile_oauth_client_secret_length','2022-07-14 23:19:46'),('account_profile_overrideCode','2023-05-09 15:54:09'),('account_summary_hasUpdatedSavedSearches','2022-07-27 17:23:29'),('aci_speedpay_sdk_config','2022-10-06 14:57:01'),('aci_speedpay_settings','2022-08-30 22:03:33'),('acsLog','2011-12-13 16:04:23'),('addContactEmail','2021-10-27 14:04:27'),('addDefaultCatPassword','2021-09-15 04:46:04'),('addGeolocation','2021-09-01 18:32:47'),('addGreenhouseUrl','2021-08-25 20:21:34'),('additionalTranslationTermInfo','2021-08-25 16:40:52'),('additional_index_logging','2021-07-21 22:25:50'),('additional_library_contact_links','2019-01-28 20:58:56'),('additional_locations_for_availability','2019-01-28 20:58:56'),('addLastSeenToOverDriveProducts','2021-10-25 23:25:05'),('addNewSystemBrowseCategories','2021-11-19 22:02:06'),('addNumDismissedToBrowseCategory','2021-11-19 22:02:06'),('addRecommendedForYou','2022-06-07 19:15:33'),('addReleaseChannelToCachedGreenhouseData','2021-09-22 16:15:42'),('addSettingIdToAxis360Scopes','2020-08-10 13:04:25'),('addSiteIdToCachedGreenhouseData','2021-09-09 00:04:51'),('addTablelistWidgetListsLinks','2019-01-28 20:59:01'),('addThemeToCachedGreenhouseData','2021-10-07 22:56:12'),('addUseLineItems_FISWorldPay','2022-04-20 00:46:29'),('addVersionToCachedGreenhouseData','2022-02-27 18:40:30'),('addWeightToDonationValue','2022-06-07 19:15:33'),('add_account_alerts_notification','2022-12-09 21:56:32'),('add_account_alerts_notification_settings','2022-12-29 21:45:01'),('add_account_display_options','2022-10-06 14:57:02'),('add_account_profile_library_settings','2023-02-09 16:36:13'),('add_aci_token_payment','2022-08-30 22:03:33'),('add_additional_control_over_format_mapping','2024-06-25 15:05:21'),('add_additional_control_over_format_mapping_part2','2024-06-25 15:05:21'),('add_additional_format_pickup_options','2022-08-29 14:08:08'),('add_additional_library_sso_config_options','2022-10-17 14:54:48'),('add_address_information_for_donations','2024-03-25 16:02:14'),('add_administer_selected_browse_category_groups','2023-05-18 21:13:21'),('add_always_display_renew_count','2024-01-05 09:20:49'),('add_app_scheme_system_variables','2023-01-30 23:46:02'),('add_aspen_lida_build_tracker','2023-01-18 15:01:51'),('add_aspen_lida_general_settings_table','2023-02-22 20:48:38'),('add_aspen_site_scheduled_update','2023-04-27 14:11:42'),('add_barcode_last_name_login_option','2024-01-05 09:20:35'),('add_batchDeletePermissions','2022-10-06 14:57:02'),('add_book_cover_display_control_in_library_settings','2024-06-25 15:05:20'),('add_branded_app_name','2023-04-12 15:45:12'),('add_branded_app_privacy_policy_contact','2024-03-25 16:02:13'),('add_browseLinkText_to_layout_settings','2021-04-20 23:30:13'),('add_build_tracker_slack_alert','2023-01-18 15:01:51'),('add_bypass_aspen_login_page','2023-01-30 23:46:02'),('add_bypass_patron_login','2023-04-27 14:11:42'),('add_childRecords_more_details_section','2022-10-06 14:57:01'),('add_child_title_to_record_parents','2022-10-06 14:57:01'),('add_colors_to_web_builder','2021-07-29 03:16:23'),('add_companion_system','2024-01-05 09:20:48'),('add_continuedByRecords_more_details_section','2023-02-22 22:48:38'),('add_continuesRecords_more_details_section','2023-02-22 22:48:38'),('add_cookie_consent_theming','2024-01-05 09:20:39'),('add_coverStyle','2022-10-06 14:57:02'),('add_ctaDeepLinkOptions','2022-10-06 14:57:02'),('add_default_system_variables','2022-06-14 15:50:20'),('add_deluxe_remittance_id','2023-03-29 08:00:32'),('add_deluxe_security_id','2023-03-29 08:00:32'),('add_device_notification_tokens','2022-08-22 18:57:13'),('add_disallow_third_party_covers','2024-01-05 09:20:35'),('add_displayHoldsOnCheckout','2022-07-21 16:21:03'),('add_displayItemBarcode','2021-08-23 18:45:43'),('add_display_name_to_themes','2023-03-16 21:38:26'),('add_donateToLibrary','2023-03-02 22:15:39'),('add_donationEarmark','2023-03-02 22:15:39'),('add_donation_notification_fields','2023-03-12 18:08:35'),('add_ecommerce_deluxe','2023-03-27 09:11:11'),('add_ecommerce_options','2024-01-05 09:20:37'),('add_ecommerce_payflow_settings','2023-05-05 21:42:54'),('add_ecommerce_square_settings','2024-01-05 09:20:35'),('add_ecommerce_stripe_settings','2024-01-05 09:20:58'),('add_enable_branded_app_settings','2024-01-05 09:20:56'),('add_enable_reading_history_to_ptype','2023-01-25 16:28:18'),('add_error_to_user_payments','2021-07-26 21:59:49'),('add_expo_eas_build_webhook_key','2023-01-18 15:01:51'),('add_expo_eas_submit_webhook_key','2023-01-26 21:52:44'),('add_failed_login_attempt_logging','2024-01-05 09:20:36'),('add_fallback_sso_mapping','2023-02-09 17:11:58'),('add_footerLogoAlt','2021-07-21 22:25:51'),('add_force_reauth_sso','2024-01-05 09:20:36'),('add_forgot_barcode','2024-01-05 09:20:48'),('add_fullWidthTheme','2022-10-06 14:57:02'),('add_greenhouse_id_scheduled_update','2023-05-01 16:41:04'),('add_high_contrast_checkbox','2023-04-04 21:52:01'),('add_holdings_more_details_section','2022-10-06 14:57:01'),('add_hold_pending_cancellation','2024-01-05 09:20:37'),('add_iiiLoginConfiguration','2023-03-10 17:01:05'),('add_ill_itype','2024-01-05 09:20:40'),('add_image_to_ebscohost_database','2022-06-24 19:23:34'),('add_imgOptions','2022-10-06 14:57:02'),('add_indexes','2019-01-28 20:59:01'),('add_indexes2','2019-01-28 20:59:01'),('add_index_to_ils_volume_info','2023-01-04 16:14:30'),('add_invoiceCloud','2022-12-12 23:54:16'),('add_invoiceCloudSettingId_to_library','2023-01-13 00:56:35'),('add_isssologin_user','2023-02-02 16:09:44'),('add_isSubmitted_build_tracker','2023-01-26 21:52:44'),('add_is_virtual_info_to_items','2023-02-24 23:09:30'),('add_lastUpdated_search','2022-09-01 22:58:26'),('add_last_check_in_community_for_translations','2023-04-03 23:27:50'),('add_ldap_label','2023-02-09 16:36:13'),('add_ldap_to_sso','2023-02-09 16:36:13'),('add_library_links_access','2021-08-23 18:45:43'),('add_library_sso_config_options','2022-09-01 12:58:39'),('add_lida_event_reg_body','2024-03-25 16:02:15'),('add_lida_system_messages_options','2024-01-05 09:20:49'),('add_location_image','2024-01-05 09:20:57'),('add_logoNotification','2022-09-01 22:57:12'),('add_makeAccordion_to_portalRow','2021-04-20 23:30:14'),('add_masquerade_switch_to_ip_addresses','2024-01-05 09:20:36'),('add_materials_requests_limit_by_ptype','2023-02-22 21:22:19'),('add_maxDaysToFreeze','2021-08-23 18:45:42'),('add_moveSearchTools','2022-10-06 14:57:02'),('add_notifyCustom','2022-10-06 14:57:02'),('add_number_of_days_to_index_to_event_indexers','2024-01-05 09:20:39'),('add_numInvalidRecords_to_indexing_logs','2022-11-02 02:59:14'),('add_numInvalidRecords_to_sideload_logs','2022-11-02 23:03:57'),('add_oauth_gateway_options','2022-10-06 14:57:02'),('add_oauth_grant_type','2022-11-16 23:21:46'),('add_oauth_logout','2022-11-16 23:21:46'),('add_oauth_mapping','2022-10-06 14:57:02'),('add_oauth_private_keys','2022-11-16 23:21:46'),('add_oauth_to_user','2022-11-16 23:21:46'),('add_opt_out_batch_updates','2023-04-27 14:11:42'),('add_parentRecords_more_details_section','2022-10-06 14:57:01'),('add_parent_child_info_to_records','2023-02-22 22:48:38'),('add_place_of_publication_to_grouped_work','2024-03-25 16:02:14'),('add_pushToken_user_notifications','2022-08-22 18:57:13'),('add_records_to_delete_for_sideloads','2021-07-21 22:25:51'),('add_referencecover_groupedwork','2021-04-08 13:50:51'),('add_requestingUrl_payment','2023-01-05 02:46:02'),('add_requireLogin_to_basic_page','2021-08-23 18:45:42'),('add_requireLogin_to_portal_page','2021-08-23 18:45:42'),('add_restrict_sso_ip','2024-01-05 09:20:48'),('add_saml_options_to_sso_settings','2023-01-25 16:28:19'),('add_search_source_to_saved_searches','2019-01-28 20:59:02'),('add_search_url_to_saved_searches','2019-11-18 17:53:58'),('add_selected_users_to_browse_category_groups','2023-05-18 21:13:21'),('add_self_check_barcode_styles','2024-01-05 09:20:51'),('add_send_emails_new_materials_request','2023-02-22 21:22:19'),('add_settings_axis360_exportLog','2020-08-21 19:41:22'),('add_settings_cloud_library_exportLog','2021-01-14 20:15:09'),('add_shared_session_table','2024-01-05 09:20:57'),('add_showBookIcon_to_layout_settings','2021-04-08 13:50:52'),('add_show_edition_covers','2023-05-18 21:13:21'),('add_show_link_on','2024-01-05 09:20:57'),('add_sms_indicator_to_phone','2019-01-28 20:58:56'),('add_sorts_for_browsable_objects','2021-08-23 18:45:42'),('add_sort_info_to_ebscohost_database','2022-06-27 21:34:25'),('add_sp_logout_url','2023-02-02 16:09:44'),('add_sso_account_profiles','2023-02-09 17:11:58'),('add_sso_aspen_lida_module','2023-02-02 16:09:43'),('add_sso_auth_only','2023-02-09 17:11:58'),('add_sso_mapping_constraints','2023-03-10 17:01:05'),('add_sso_permissions','2022-10-06 14:57:02'),('add_sso_saml_student_attributes','2023-05-15 21:35:29'),('add_sso_settings_account_profile','2023-02-09 17:11:58'),('add_sso_table','2022-10-06 14:57:02'),('add_sso_unique_field_match','2023-02-22 22:48:38'),('add_sso_updateAccount','2024-01-05 09:20:57'),('add_sso_user_options','2023-02-01 16:32:50'),('add_staffonly_to_sso_settings','2023-01-25 16:28:19'),('add_staff_ptypes_to_sso_settings','2023-01-25 16:28:19'),('add_staff_ptype_to_sso_settings','2023-01-25 16:28:18'),('add_staff_settings_to_user','2023-02-22 21:22:19'),('add_supporting_company_system_variables','2024-01-05 09:20:38'),('add_tab_coloring_theme','2023-04-27 14:11:42'),('add_theme_header_image','2022-10-06 14:57:03'),('add_titles_to_user_list_entry','2021-06-01 20:27:56'),('add_title_user_list_entry','2021-06-01 20:27:55'),('add_useHomeLink_to_layout_settings','2021-04-08 13:50:51'),('add_userAlertPreferences','2022-10-06 14:57:02'),('add_user_brightness_permission','2024-01-05 09:20:57'),('add_user_not_interested_index','2022-08-29 14:08:08'),('add_web_builder_basic_page_access','2021-08-23 18:45:42'),('add_web_builder_portal_page_access','2021-08-23 18:45:42'),('add_work_level_rating_index','2021-02-24 23:04:51'),('add_worldpay_settings','2022-04-08 21:00:43'),('administer_host_permissions','2020-10-27 17:06:20'),('admin_field_locking','2024-01-05 09:20:43'),('allowCancellingAvailableHolds','2024-01-05 09:20:49'),('allowChangingPickupLocationForAvailableHolds','2024-01-05 09:20:49'),('allow_anyone_to_view_documentation','2020-09-29 21:40:15'),('allow_decimal_series_display_orders','2023-03-02 22:15:39'),('allow_ip_tracking_to_be_disabled','2023-03-29 09:29:06'),('allow_long_scheduled_update_notes','2023-05-04 22:56:50'),('allow_masquerade_mode','2019-01-28 20:58:56'),('allow_masquerade_with_username','2024-06-25 15:05:20'),('allow_multiple_themes_for_libraries','2023-03-15 23:02:54'),('allow_multiple_themes_for_locations','2023-03-16 18:03:48'),('allow_reading_history_display_in_masquerade_mode','2019-01-28 20:58:56'),('allow_users_to_change_themes','2023-03-16 22:29:28'),('alpha_browse_setup_2','2019-01-28 20:58:59'),('alpha_browse_setup_3','2019-01-28 20:58:59'),('alpha_browse_setup_4','2019-01-28 20:58:59'),('alpha_browse_setup_5','2019-01-28 20:58:59'),('alpha_browse_setup_6','2019-01-28 20:59:00'),('alpha_browse_setup_7','2019-01-28 20:59:00'),('alpha_browse_setup_8','2019-01-28 20:59:00'),('alpha_browse_setup_9','2019-01-28 20:59:01'),('alternate_grouping_category','2024-06-25 15:05:20'),('alwaysFlagNewTitlesInSearchResults','2022-08-04 04:14:02'),('always_show_search_results_Main_details','2019-01-28 20:58:56'),('amazon_ses','2021-05-27 16:14:10'),('amazon_ses_secret_length','2022-01-05 16:27:08'),('analytics','2019-01-28 20:59:01'),('analytics_1','2019-01-28 20:59:01'),('analytics_2','2019-01-28 20:59:01'),('analytics_3','2019-01-28 20:59:01'),('analytics_4','2019-01-28 20:59:01'),('analytics_5','2019-01-28 20:59:02'),('analytics_6','2019-01-28 20:59:02'),('analytics_7','2019-01-28 20:59:02'),('analytics_8','2019-01-28 20:59:02'),('api_usage_stats','2021-03-19 14:13:57'),('appReleaseChannel','2021-09-22 16:15:41'),('archivesRole','2019-01-28 20:58:59'),('archive_collection_default_view_mode','2019-01-28 20:58:56'),('archive_filtering','2019-01-28 20:58:56'),('archive_more_details_customization','2019-01-28 20:58:56'),('archive_object_filtering','2019-01-28 20:58:56'),('archive_private_collections','2019-01-28 20:59:02'),('archive_requests','2019-01-28 20:59:02'),('archive_subjects','2019-01-28 20:59:02'),('ar_update_frequency','2022-04-08 21:00:43'),('aspenSite_activeTicketFeed','2022-03-31 21:48:47'),('aspenSite_activeTicketFeed2','2022-04-01 18:27:04'),('aspen_lida_permissions_update','2024-01-05 09:20:37'),('aspen_lida_self_check_settings','2024-01-05 09:20:37'),('aspen_lida_settings','2022-02-01 15:31:47'),('aspen_lida_settings_2','2022-02-01 15:31:48'),('aspen_lida_settings_3','2022-02-01 15:31:48'),('aspen_release_test_release_date','2022-11-18 15:06:55'),('aspen_sites','2021-07-30 02:19:22'),('aspen_site_internal_name','2021-08-23 18:45:42'),('aspen_site_isOnline','2022-08-04 04:14:02'),('aspen_site_lastOfflineTime','2022-07-21 16:21:03'),('aspen_site_lastOfflineTracking','2022-08-04 04:14:02'),('aspen_site_monitored','2023-01-31 15:40:34'),('aspen_site_timezone','2022-06-08 13:25:56'),('aspen_usage','2019-11-18 17:53:58'),('aspen_usage_add_sessions','2020-12-17 20:24:00'),('aspen_usage_blocked_requests','2020-06-10 12:22:32'),('aspen_usage_ebscohost','2022-06-24 13:38:50'),('aspen_usage_ebsco_eds','2020-07-21 13:33:42'),('aspen_usage_events','2020-04-30 14:33:56'),('aspen_usage_instance','2020-12-15 19:27:15'),('aspen_usage_remove_slow_pages','2020-12-17 20:05:20'),('aspen_usage_summon','2024-03-25 16:02:11'),('aspen_usage_websites','2019-11-18 17:53:58'),('assabet_events','2024-06-25 15:05:20'),('assabet_settings','2024-06-25 15:05:20'),('assign_novelist_settings_to_libraries','2023-03-10 22:28:15'),('authentication_profiles','2019-01-28 20:59:02'),('authorities','2019-11-18 17:53:46'),('author_authorities','2021-01-27 20:56:59'),('author_authorities_index','2022-12-07 16:40:30'),('author_authorities_normalized_values','2021-02-01 15:27:43'),('author_enrichment','2019-01-28 20:58:59'),('automatic_update_settings','2024-01-05 09:20:34'),('autoPickUserHomeLocation','2024-06-25 15:05:22'),('availability_toggle_customization','2019-01-28 20:58:56'),('axis360AddSettings','2021-02-12 01:49:54'),('axis360Title','2020-08-08 20:50:11'),('axis360_add_response_info_to_availability','2020-08-20 15:56:32'),('axis360_add_setting_to_availability','2020-08-08 21:00:00'),('axis360_availability_indexes','2021-05-12 22:50:28'),('axis360_availability_remove_unused_fields','2020-08-21 19:41:21'),('axis360_availability_update_for_new_method','2020-09-24 02:26:32'),('axis360_exportLog','2020-08-07 14:36:05'),('axis360_exportLog_num_skipped','2020-08-21 20:35:41'),('axis360_restrict_scopes_by_audience','2024-04-11 17:23:35'),('axis360_stats_index','2021-02-06 21:31:45'),('axis_360_options','2022-07-03 20:04:14'),('basic_page_allow_access_by_home_location','2022-10-06 14:57:01'),('bookcover_info','2019-11-18 17:53:58'),('book_store','2019-01-28 20:59:01'),('book_store_1','2019-01-28 20:59:01'),('boost_disabling','2019-01-28 20:59:01'),('browsable_course_reserves','2021-11-30 16:30:45'),('browseCategoryDismissal','2021-11-18 04:45:20'),('browse_categories','2019-01-28 20:59:02'),('browse_categories_add_startDate_endDate','2021-05-26 16:19:08'),('browse_categories_lists','2019-01-28 20:59:02'),('browse_categories_search_term_and_stats','2019-01-28 20:59:02'),('browse_categories_search_term_length','2019-01-28 20:59:02'),('browse_category_default_view_mode','2019-01-28 20:58:56'),('browse_category_groups','2020-01-08 18:34:34'),('browse_category_library_updates','2020-08-31 17:13:32'),('browse_category_ratings_mode','2019-01-28 20:58:56'),('browse_category_source','2020-06-10 12:22:31'),('browse_category_times_shown','2022-03-20 19:04:15'),('bypass_event_pages','2024-01-05 09:20:38'),('cached_values_engine','2022-02-21 19:09:04'),('cached_value_case_sensitive','2020-03-05 22:53:47'),('cacheGreenhouseData','2021-09-08 23:42:15'),('callNumberPrestamp2','2024-01-05 09:20:48'),('card_renewal_options','2024-01-05 09:20:56'),('catalogingRole','2019-01-28 20:58:59'),('catalogStatus','2022-03-20 19:04:14'),('changeBrowseCategoryIdType','2021-11-30 16:30:44'),('change_default_formatSource_KohaOnly','2022-08-29 14:08:08'),('change_ecommerceTerms_to_mediumText','2024-01-05 09:20:39'),('change_greenhouse_url','2023-01-09 23:09:10'),('change_to_innodb','2019-03-05 18:07:51'),('checkoutFormatLength','2021-11-16 04:58:47'),('checkoutIsILL','2024-01-05 09:20:40'),('check_titles_in_user_list_entries','2021-08-23 18:45:43'),('claim_authorship_requests','2019-01-28 20:59:02'),('cleanupApiUsage_func','2022-10-06 14:57:02'),('cleanup_invalid_reading_history_entries','2021-01-14 16:33:48'),('clean_up_invalid_instances','2022-09-11 03:22:11'),('clear_analytics','2019-01-28 20:59:02'),('clear_default_covers_22_06_04','2022-06-14 21:28:49'),('closed_captioning_in_records','2022-06-28 23:13:37'),('cloud_library_add_scope_setting_id','2021-01-14 16:34:36'),('cloud_library_add_settings','2021-02-12 01:49:54'),('cloud_library_add_setting_to_availability','2021-01-14 20:16:54'),('cloud_library_availability','2019-11-18 17:53:55'),('cloud_library_availability_changes','2024-03-25 16:02:13'),('cloud_library_cleanup_availability_with_settings','2021-05-03 20:49:19'),('cloud_library_exportLog','2019-11-18 17:53:55'),('cloud_library_exportTable','2019-11-18 17:53:55'),('cloud_library_increase_allowable_copies','2020-04-30 14:33:55'),('cloud_library_module_add_log','2020-03-31 18:45:02'),('cloud_library_multiple_scopes','2021-05-18 13:12:51'),('cloud_library_restrict_scopes_by_audience','2024-04-11 17:23:35'),('cloud_library_scoping','2019-11-18 17:53:55'),('cloud_library_settings','2019-11-18 17:53:55'),('cloud_library_target_audience','2024-03-25 16:02:13'),('cloud_library_usage_add_instance','2020-12-21 17:24:10'),('coce_settings','2020-08-24 14:05:19'),('collapse_facets','2019-01-28 20:58:55'),('collection_report_permissions','2024-01-05 09:20:36'),('collection_spotlights_carousel_style','2020-10-26 18:02:00'),('combined_results','2019-01-28 20:58:56'),('communico_events','2023-03-15 23:02:46'),('communico_full_index','2024-03-26 16:08:04'),('communico_settings','2023-03-15 23:02:46'),('compress_hoopla_fields','2021-07-12 16:44:23'),('compress_novelist_fields','2021-07-11 21:04:57'),('compress_overdrive_fields','2021-07-12 16:44:29'),('comprise_link_to_library','2021-07-06 15:52:36'),('comprise_settings','2021-06-27 17:52:03'),('configurable_solr_timeouts','2022-02-21 19:09:05'),('contentcafe_settings','2020-01-03 19:47:26'),('contentEditor','2019-01-28 20:58:59'),('content_cafe_disable','2022-12-07 16:40:30'),('convertOldEContent','2011-11-06 22:58:31'),('convert_to_format_status_maps','2019-11-18 17:53:46'),('cookie_policy_html','2024-01-05 09:20:36'),('cookie_storage_consent','2024-01-05 09:20:36'),('course_reserves_indexing','2021-11-30 16:30:45'),('course_reserves_library_mappings','2021-12-31 21:05:12'),('course_reserves_module','2021-11-30 16:30:45'),('course_reserves_permissions','2021-11-30 16:30:45'),('course_reserves_unique_index','2022-02-21 19:09:04'),('coverArt_suppress','2019-01-28 20:58:58'),('createAxis360Module','2020-08-07 14:36:04'),('createAxis360SettingsAndScopes','2020-08-07 14:36:04'),('createEbscoModules','2020-07-14 14:14:44'),('createMaterialRequestStats','2022-05-26 19:43:21'),('createPalaceProjectModule','2024-01-05 09:20:52'),('createPalaceProjectSettingsAndScopes','2024-01-05 09:20:52'),('createPermissionsforEBSCOhost','2022-05-26 19:42:54'),('createSearchInterface_libraries_locations','2021-07-14 20:52:48'),('createSettingsForEbscoEDS','2020-07-14 14:14:45'),('createSettingsforEBSCOhost','2022-05-26 19:42:54'),('createSettingsForSummon','2024-03-25 16:02:11'),('createSummonModule','2024-03-25 16:02:11'),('create_cloud_library_module','2019-11-18 17:53:55'),('create_community_content_url','2023-03-31 09:54:49'),('create_events_module','2020-04-30 14:33:55'),('create_field_encryption_file','2021-02-12 02:31:03'),('create_hoopla_module','2019-11-18 17:53:49'),('create_ils_modules','2019-11-18 17:53:47'),('create_lida_notifications','2022-10-06 14:57:02'),('create_nyt_update_log','2021-03-29 20:48:56'),('create_open_archives_module','2019-11-18 17:53:55'),('create_overdrive_module','2019-11-18 17:53:48'),('create_overdrive_scopes','2019-12-18 18:48:34'),('create_plural_grouped_work_facets','2021-07-06 15:52:37'),('create_polaris_module','2021-03-05 20:16:16'),('create_rbdigital_module','2019-11-18 17:53:49'),('create_system_variables_table','2020-04-30 14:33:56'),('create_user_notifications','2022-08-22 18:57:13'),('create_user_notification_tokens','2022-08-22 18:57:13'),('create_web_indexer_module','2019-11-18 17:53:56'),('cronLog','2019-01-28 20:59:01'),('cron_log_errors','2020-04-07 12:24:03'),('cron_process_skips','2020-04-07 12:24:04'),('curbside_pickup_settings','2021-12-17 23:34:16'),('curbside_pickup_settings_pt2','2021-12-17 23:34:16'),('curbside_pickup_settings_pt3','2021-12-17 23:34:16'),('curbside_pickup_settings_pt4','2021-12-27 20:32:54'),('currencyCode','2020-11-02 16:19:32'),('custom_facets','2024-01-05 09:20:37'),('custom_form_includeIntroductoryTextInEmail','2022-11-08 15:28:53'),('custom_marc_fields_to_index_as_keyword','2022-07-07 15:23:41'),('defaultAvailabilityToggle','2020-03-05 22:53:47'),('defaultGroupedWorkDisplaySettings','2020-05-14 19:25:08'),('defaultSelfRegistrationEmailTemplate','2024-01-05 09:20:50'),('default_library','2019-01-28 20:58:56'),('default_list_indexing','2020-09-09 22:28:45'),('default_records_to_include_weight','2023-04-07 23:29:22'),('delete_null_translations','2024-01-05 09:20:48'),('detailed_hold_notice_configuration','2019-01-28 20:58:56'),('development_components_to_epics','2022-11-23 23:15:39'),('development_components_to_tasks','2022-11-23 23:15:39'),('development_epics','2022-11-21 22:40:54'),('development_epics_to_tasks','2022-11-22 23:46:45'),('development_partners_to_epics','2022-11-22 23:46:45'),('development_partners_to_tasks','2022-11-22 23:46:45'),('development_sprints','2022-11-18 19:41:22'),('development_sprints_to_tasks','2022-11-22 23:46:45'),('development_tasks_take_2','2022-11-19 00:00:43'),('development_tickets_to_components','2022-11-23 23:55:49'),('development_tickets_to_tasks','2022-11-22 23:46:44'),('disable_auto_correction_of_searches','2019-01-28 20:58:56'),('disable_circulation_actions','2024-01-05 09:20:52'),('disable_hoopla_module_auto_restart','2019-12-03 14:45:39'),('disable_linking_changes','2022-12-01 02:32:10'),('dismissPlacardButtonIcon','2021-11-03 23:21:36'),('dismissPlacardButtonLocation','2021-11-03 23:21:36'),('displayMaterialsRequestToPublic','2021-11-03 15:59:06'),('display_list_author_control','2024-01-05 09:20:51'),('display_pika_logo','2019-01-28 20:58:56'),('donations_addLocationSettings','2021-11-19 22:02:06'),('donations_createDonationsDedicateType','2021-11-19 22:02:06'),('donations_createDonationsDedicateTypeB','2021-11-30 16:30:44'),('donations_createDonationsEarmarks','2021-11-19 22:02:06'),('donations_createDonationsEarmarksA','2021-11-30 16:30:44'),('donations_createDonationsEarmarksB','2021-11-30 16:30:44'),('donations_createDonationsFormFields','2021-11-19 22:02:06'),('donations_createDonationsFormFieldsA','2021-11-30 16:30:44'),('donations_createDonationsFormFieldsB','2021-11-30 16:30:44'),('donations_createDonationsValue','2021-11-19 22:02:06'),('donations_createDonationsValueA','2021-11-30 16:30:44'),('donations_createDonationsValueB','2021-11-30 16:30:44'),('donations_createInitialTable','2021-11-19 22:02:06'),('donations_createInitialTableA','2021-11-30 16:30:44'),('donations_createInitialTableB','2021-11-30 16:30:44'),('donations_disambiguate_library_and_location','2024-01-05 09:20:48'),('donations_donations_createDonationsDedicateTypeA','2021-11-30 16:30:44'),('donations_report_permissions','2021-12-09 02:49:14'),('donations_settings','2021-11-19 22:02:06'),('donation_formFields_uniqueKey','2021-12-01 02:29:06'),('dpla_api_settings','2020-01-09 01:49:33'),('dpla_integration','2019-01-28 20:58:56'),('drop_securityId_cp','2023-04-21 15:52:07'),('drop_sso_mapping_constraints','2023-03-10 17:01:05'),('drop_user_staff_settings','2023-02-22 21:22:19'),('ebscohost_database_logo_default','2022-06-27 22:46:18'),('ebscohost_facets','2022-06-22 15:52:20'),('ebscohost_ip_addresses','2022-06-24 13:38:50'),('ebscohost_record_usage','2022-06-24 13:38:50'),('ebscohost_remove_authType','2022-06-27 21:34:26'),('ebscohost_search_settings','2022-06-16 21:12:29'),('ebsco_eds_increase_id_length','2020-07-22 14:05:26'),('ebsco_eds_record_usage','2020-07-21 13:33:42'),('ebsco_eds_research_starters','2020-07-27 17:16:30'),('ebsco_eds_usage_add_instance','2020-12-21 22:44:24'),('ecommerce_report_permissions','2021-08-23 18:45:52'),('ecommerce_report_permissions_all_vs_home','2024-01-05 09:20:48'),('eContentCheckout','2011-11-10 23:57:56'),('eContentCheckout_1','2011-12-13 16:04:03'),('eContentHistory','2011-11-15 17:56:44'),('eContentHolds','2011-11-10 22:39:20'),('eContentItem_1','2011-12-04 22:13:19'),('eContentRating','2011-11-16 21:53:43'),('eContentRecord_1','2011-12-01 21:43:54'),('eContentRecord_2','2012-01-11 20:06:48'),('eContentWishList','2011-12-08 20:29:48'),('econtent_attach','2011-12-30 19:12:22'),('econtent_locations_to_include','2019-01-28 20:56:58'),('econtent_marc_import','2011-12-15 22:48:22'),('editorial_review','2019-01-28 20:58:58'),('editorial_review_1','2019-01-28 20:58:58'),('editorial_review_2','2019-01-28 20:58:58'),('edit_placard_permissions','2021-09-08 17:10:17'),('emailTemplates','2024-01-05 09:20:50'),('email_stats','2024-01-05 09:20:54'),('enableAppAccess','2021-09-01 18:32:47'),('enable_archive','2019-01-28 20:58:56'),('encrypt_user_table','2021-02-12 22:47:45'),('error_table','2019-11-18 17:53:59'),('error_table_agent','2019-11-18 17:53:59'),('events_add_settings','2021-02-12 01:49:54'),('events_facets','2024-01-05 09:20:39'),('events_facets_default','2024-01-05 09:20:40'),('events_facet_settingsId','2024-01-05 09:20:40'),('events_indexing_log','2020-04-30 14:33:55'),('events_in_lists','2024-01-05 09:20:37'),('events_module_log_checks','2020-11-09 19:22:45'),('events_spotlights','2020-07-22 12:50:01'),('events_start_date_facet','2024-01-05 09:20:40'),('event_library_mapping','2023-05-18 21:13:21'),('event_library_mapping_values','2023-05-18 21:13:21'),('event_record_usage','2020-04-30 14:33:56'),('event_registration_modal','2024-01-05 09:20:38'),('evergreen_extract_number_of_threads','2024-01-05 09:20:54'),('evergreen_extract_options','2024-01-05 09:20:54'),('evergreen_folio_modules','2022-02-21 19:09:05'),('evolve_module','2022-06-22 15:52:20'),('expiration_message','2019-01-28 20:58:56'),('explore_more_configuration','2019-01-28 20:58:56'),('exportingUrlDescription','2024-01-05 09:20:48'),('extend_bookcover_info_source','2023-02-28 00:42:33'),('extend_grouped_work_id_not_interested','2023-02-28 00:42:33'),('extend_placard_link','2021-05-12 22:50:28'),('extend_symphonyPaymentType','2024-01-05 09:20:51'),('extend_web_form_label','2023-03-30 07:32:08'),('externalLinkTracking','2019-01-28 20:58:58'),('externalRequestsLog','2021-11-03 23:21:36'),('externalRequestsLogMethod','2021-11-09 18:04:51'),('externalRequestsRequestMethodLength','2023-01-19 17:23:41'),('external_materials_request','2019-01-28 20:58:56'),('facetLabel_length','2020-01-09 01:49:33'),('facets_add_multi_select','2019-11-18 17:53:42'),('facets_add_translation','2019-11-18 17:53:43'),('facets_locking','2019-11-18 17:53:42'),('facets_remove_author_results','2019-11-18 17:53:42'),('facet_counts_to_show','2022-06-14 15:52:06'),('facet_grouping_updates','2019-01-28 20:58:55'),('facet_setting_ids','2024-01-05 09:20:47'),('failed_login_index','2024-01-05 09:20:52'),('field_encryption','2021-02-12 01:49:54'),('fileUploadsThumb','2021-07-16 16:03:44'),('file_uploads_table','2020-04-30 14:33:56'),('fix_dates_in_item_details','2021-07-17 23:37:56'),('fix_ils_record_indexes','2021-07-21 22:25:50'),('fix_ils_volume_indexes','2021-08-23 18:45:42'),('fix_incorrect_available_memory','2022-07-09 21:43:07'),('fix_list_entries_for_grouped_works_with_language','2022-06-14 15:51:04'),('fix_requiredModule_website_facets','2024-01-05 09:20:48'),('fix_sideload_permissions','2022-03-29 17:55:59'),('fix_sierra_module_background_process','2020-11-28 15:55:27'),('fix_user_email','2024-01-05 09:20:43'),('footerText','2022-04-27 15:24:28'),('forceReindexForAxis360_2302','2023-02-02 16:09:43'),('force_overdrive_full_update','2024-01-05 09:20:55'),('force_processing_empty_works','2023-05-07 15:39:54'),('force_regrouping_all_works_24_05','2024-06-25 15:05:20'),('force_reindex_of_records_with_no_language','2022-09-10 21:14:16'),('force_reindex_of_records_with_pipe_language','2022-06-14 15:50:20'),('force_reindex_of_records_with_spaces','2022-09-01 23:15:02'),('force_reload_of_cloud_library_21_08','2021-06-27 17:52:03'),('force_reload_of_hoopla_21_08','2021-07-06 15:52:37'),('force_reload_of_hoopla_22_10','2022-10-06 14:57:03'),('force_reload_of_overdrive_21_08','2021-07-06 15:52:37'),('force_website_reindex_22_05','2022-04-28 23:20:29'),('format_holdType','2019-11-18 17:53:46'),('format_mustPickupAtHoldingBranch','2021-05-03 20:49:18'),('format_status_in_library_use_only','2020-03-05 22:53:47'),('format_status_maps','2019-11-18 17:53:46'),('format_status_suppression','2019-11-18 17:53:46'),('full_record_view_configuration_options','2019-01-28 20:58:56'),('full_text_limiter','2024-06-25 15:05:22'),('genealogy','2019-01-28 20:58:58'),('genealogy_1','2019-01-28 20:58:58'),('genealogy_lot_length','2020-10-30 19:03:30'),('genealogy_marriage_date_update','2020-12-21 23:11:40'),('genealogy_module','2020-07-23 17:45:42'),('genealogy_nashville_1','2019-01-28 20:58:58'),('genealogy_obituary_date_update','2020-08-18 01:30:03'),('genealogy_person_date_update','2020-12-21 23:11:40'),('goodreads_library_contact_link','2019-01-28 20:58:56'),('google_analytics_version','2020-11-07 18:32:16'),('google_api_settings','2020-01-08 18:34:34'),('google_bucket','2023-03-10 17:01:05'),('google_more_settings','2020-02-09 22:24:59'),('google_remove_google_translate','2020-11-07 18:32:16'),('greenhouseMonitoring','2021-10-28 01:50:56'),('greenhouseMonitoring2','2021-10-29 22:56:24'),('greenhouseSlackIntegration','2021-10-29 22:27:33'),('greenhouse_add_accessToken','2022-08-22 18:57:13'),('greenhouse_add_ils','2021-12-16 23:09:22'),('greenhouse_appAccess','2021-08-25 16:40:51'),('greenhouse_contact_and_go_live','2022-03-04 00:24:28'),('greenhouse_cpu_and_memory_monitoring','2022-07-04 17:35:06'),('greenhouse_rt_auth_token','2022-11-29 23:38:45'),('greenhouse_rt_base_url','2022-11-30 21:22:54'),('greenhouse_setting_apiKeys','2021-11-30 22:37:05'),('greenhouse_wait_time_monitoring','2022-07-14 23:19:46'),('grouped_works','2019-01-28 20:58:56'),('grouped_works_1','2019-01-28 20:58:56'),('grouped_works_2','2019-01-28 20:58:56'),('grouped_works_partial_updates','2019-01-28 20:58:57'),('grouped_works_primary_identifiers','2019-01-28 20:58:56'),('grouped_works_primary_identifiers_1','2019-01-28 20:58:56'),('grouped_works_remove_split_titles','2019-01-28 20:58:56'),('grouped_work_alternate_titles','2020-02-09 22:24:42'),('grouped_work_debugging','2024-06-25 15:05:21'),('grouped_work_display_856_as_access_online','2022-10-06 14:57:01'),('grouped_work_display_info','2020-05-16 13:20:05'),('grouped_work_display_settings','2019-12-18 18:55:36'),('grouped_work_display_showItemDueDates','2021-06-10 16:30:21'),('grouped_work_display_title_author','2020-05-15 15:58:23'),('grouped_work_duplicate_identifiers','2019-01-28 20:58:57'),('grouped_work_engine','2019-01-28 20:58:57'),('grouped_work_evoke','2019-01-28 20:58:57'),('grouped_work_identifiers_ref_indexing','2019-01-28 20:58:57'),('grouped_work_index_cleanup','2019-01-28 20:58:57'),('grouped_work_index_date_updated','2019-01-28 20:58:57'),('grouped_work_language','2022-05-26 19:42:54'),('grouped_work_merging','2019-01-28 20:58:57'),('grouped_work_primary_identifiers_hoopla','2019-01-28 20:58:57'),('grouped_work_primary_identifier_length','2024-01-05 09:20:53'),('grouped_work_primary_identifier_types','2019-01-28 20:58:57'),('grouped_work_title_length','2021-02-25 14:33:53'),('header_text','2019-01-28 20:58:56'),('hide_series','2024-03-25 16:02:14'),('hide_subjects_drop_date_added','2024-03-25 16:02:14'),('hide_subject_facets','2022-09-01 12:55:29'),('hide_subject_facet_permission','2022-09-01 12:55:29'),('holdIsILL','2022-06-01 19:33:16'),('hold_request_confirmations','2021-07-06 15:52:37'),('holiday','2019-01-28 20:59:01'),('holiday_1','2019-01-28 20:59:01'),('hoopla_add_settings','2019-11-18 17:53:48'),('hoopla_add_settings_2','2021-05-06 03:22:55'),('hoopla_add_setting_to_scope','2020-12-14 17:03:19'),('hoopla_bingepass','2022-07-26 17:12:46'),('hoopla_exportLog','2019-01-28 20:58:57'),('hoopla_exportLog_skips','2019-11-18 17:53:48'),('hoopla_exportLog_update','2019-11-18 17:53:48'),('hoopla_exportTables','2019-01-28 20:58:57'),('hoopla_export_include_raw_data','2019-11-18 17:53:48'),('hoopla_filter_records_from_other_vendors','2019-11-18 17:53:49'),('hoopla_genres_to_exclude','2022-10-06 14:57:01'),('hoopla_index_by_day','2022-11-09 00:15:35'),('hoopla_integration','2019-01-28 20:58:56'),('hoopla_library_options','2019-01-28 20:58:56'),('hoopla_library_options_remove','2019-01-28 20:58:56'),('hoopla_module_add_log','2020-03-31 18:45:02'),('hoopla_regroup_all_records','2021-09-15 23:32:28'),('hoopla_restrict_scopes_by_audience','2024-04-11 17:23:35'),('hoopla_scoping','2019-11-18 17:53:48'),('hoopla_title_exclusion_updates','2022-04-06 06:54:10'),('hoopla_usage_add_instance','2020-12-21 17:27:45'),('horizontal_search_bar','2019-01-28 20:58:56'),('host_information','2020-10-27 17:06:37'),('hours_and_locations_control','2019-01-28 20:58:55'),('htmlForMarkdown','2021-03-01 14:37:04'),('ill_link','2019-01-28 20:58:56'),('ils_code_records_owned_length','2019-01-28 20:58:56'),('ils_exportLog','2019-11-18 17:53:45'),('ils_exportLog_num_regroups','2021-02-24 23:42:44'),('ils_exportLog_skips','2019-11-18 17:53:45'),('ils_hold_summary','2019-01-28 20:58:57'),('ils_log_add_records_with_invalid_marc','2022-03-20 19:04:15'),('ils_marc_checksums','2019-01-28 20:59:02'),('ils_marc_checksum_first_detected','2019-01-28 20:59:02'),('ils_marc_checksum_first_detected_signed','2019-01-28 20:59:02'),('ils_marc_checksum_source','2019-01-28 20:59:02'),('ils_record_suppression','2022-06-09 18:26:20'),('ils_usage_add_instance','2020-12-21 17:22:16'),('includePersonalAndCorporateNamesInTopics','2023-02-24 23:09:30'),('include_children_kids','2024-04-11 17:23:35'),('increaseExternalRequestResponseField','2021-11-30 16:30:44'),('increaseFullMarcExportRecordIdThreshold','2021-11-30 16:30:45'),('increaseGreenhouseDataNameLength','2021-09-09 00:16:03'),('increaseLengthOfShowInMainDetails','2021-05-03 20:49:18'),('increaseSymphonyPaymentTypeAndPolicyLengths','2021-10-07 22:56:12'),('increase_checkout_due_date','2021-08-23 18:45:42'),('increase_course_reserves_instructor','2024-03-25 16:02:14'),('increase_course_reserves_source_length','2022-06-22 15:52:20'),('increase_grouped_work_length_for_language','2022-05-26 19:43:21'),('increase_ill_link_size','2023-03-02 22:15:39'),('increase_ilsID_size_for_ils_marc_checksums','2019-01-28 20:58:57'),('increase_length_of_new_materials_request_column','2023-03-17 19:55:10'),('increase_length_of_shelf_locations_to_exclude','2023-03-20 20:44:03'),('increase_login_form_labels','2019-01-28 20:58:56'),('increase_nonHoldableITypes','2021-10-07 22:56:11'),('increase_patron_type_length','2024-06-25 15:05:21'),('increase_scoping_field_lengths','2021-08-23 18:45:42'),('increase_scoping_field_lengths_2','2024-01-05 09:20:49'),('increase_search_url_size','2019-11-18 17:53:58'),('increase_search_url_size_round_2','2020-04-30 14:33:56'),('increase_showInSearchResultsMainDetails_length','2021-05-29 16:17:45'),('increase_sublocation_to_include','2023-01-18 15:01:51'),('increase_translation_map_value_length','2022-03-20 19:04:15'),('increase_volumeId_length','2021-07-16 16:03:44'),('index856Links','2023-02-26 18:21:48'),('indexAndSearchVersionVariables','2022-05-26 19:42:54'),('indexed_information_length','2021-07-06 15:52:37'),('indexed_information_publisher_length','2021-07-11 21:04:56'),('indexing_exclude_locations','2020-07-08 14:56:04'),('indexing_includeLocationNameInDetailedLocation','2020-09-14 14:09:06'),('indexing_lastUpdateOfAuthorities','2021-02-01 15:27:43'),('indexing_module_add_log','2020-03-31 18:45:02'),('indexing_module_add_settings','2021-02-12 01:49:54'),('indexing_module_add_settings2','2021-03-05 20:16:16'),('indexing_profile','2019-01-28 20:58:57'),('indexing_profiles_add_due_date_for_Koha','2021-05-18 13:12:51'),('indexing_profiles_add_notes_subfield','2021-05-18 13:12:51'),('indexing_profiles_date_created_polaris','2021-05-26 16:19:08'),('indexing_profile_add_check_sierra_mat_type_for_format','2023-05-30 19:51:06'),('indexing_profile_add_continuous_update_fields','2019-11-18 17:53:45'),('indexing_profile_audienceSubfield','2020-08-07 14:36:04'),('indexing_profile_catalog_driver','2019-01-28 20:58:57'),('indexing_profile_collection','2019-01-28 20:58:57'),('indexing_profile_collectionsToSuppress','2019-01-28 20:58:57'),('indexing_profile_determineAudienceBy','2020-06-26 21:00:14'),('indexing_profile_doAutomaticEcontentSuppression','2019-01-28 20:58:57'),('indexing_profile_dueDateFormat','2019-01-28 20:58:57'),('indexing_profile_evergreen_org_unit_schema','2023-01-30 23:46:02'),('indexing_profile_extendLocationsToSuppress','2019-01-28 20:58:57'),('indexing_profile_fallbackFormatField','2022-01-06 18:46:17'),('indexing_profile_filenames_to_include','2019-01-28 20:58:57'),('indexing_profile_folderCreation','2019-01-28 20:58:57'),('indexing_profile_groupUnchangedFiles','2019-01-28 20:58:57'),('indexing_profile_holdability','2019-01-28 20:58:57'),('indexing_profile_lastChangeProcessed','2021-04-22 01:34:04'),('indexing_profile_lastRecordIdProcessed','2021-04-20 23:30:12'),('indexing_profile_last_checkin_date','2019-01-28 20:58:57'),('indexing_profile_last_marc_export','2019-11-18 17:53:46'),('indexing_profile_last_volume_export_timestamp','2020-12-21 14:47:23'),('indexing_profile_marc_encoding','2019-01-28 20:58:57'),('indexing_profile_marc_record_subfield','2019-03-11 05:22:58'),('indexing_profile_record_linking','2022-10-06 14:57:01'),('indexing_profile_regroup_all_records','2021-02-24 23:04:51'),('indexing_profile_specific_order_location','2019-01-28 20:58:57'),('indexing_profile_specified_formats','2019-11-18 17:53:45'),('indexing_profile_speicified_formats','2019-01-28 20:58:57'),('indexing_profile_statusesToSuppressLength','2022-10-06 14:57:01'),('indexing_profile_under_consideration_order_records','2024-06-25 15:05:21'),('indexing_profile__full_export_record_threshold','2021-04-20 23:30:12'),('indexing_profile__remove_groupUnchangedFiles','2021-02-24 23:04:51'),('indexing_records_default_sub_location','2020-06-10 12:22:31'),('indexing_simplify_format_boosting','2021-02-22 16:03:55'),('index_common_timestamp_columns','2024-03-25 16:02:15'),('index_common_timestamp_columns_pt_2','2024-03-25 16:02:15'),('index_ils_barcode','2024-03-25 16:02:14'),('index_resources','2019-01-28 20:58:59'),('index_search_stats','2019-01-28 20:58:58'),('index_search_stats_counts','2019-01-28 20:58:58'),('index_subsets_of_overdrive','2019-01-28 20:58:56'),('initial_setup','2011-11-15 22:29:11'),('institution_code','2024-04-11 17:23:35'),('ip_address_logs','2020-09-14 14:09:06'),('ip_address_logs_login_info','2021-01-14 16:33:48'),('ip_debugging','2020-08-27 19:21:51'),('ip_log_queries','2021-03-19 14:13:56'),('ip_log_timing','2021-03-05 20:16:16'),('ip_lookup_1','2019-01-28 20:58:59'),('ip_lookup_2','2019-01-28 20:58:59'),('ip_lookup_3','2019-01-28 20:58:59'),('ip_lookup_blocking','2020-06-10 12:22:32'),('ip_lookup_showlogmeout','2022-01-05 21:16:09'),('islandora_cover_cache','2019-01-28 20:58:57'),('islandora_driver_cache','2019-01-28 20:58:57'),('islandora_lat_long_cache','2019-01-28 20:58:57'),('islandora_samePika_cache','2019-01-28 20:58:57'),('javascript_snippets','2020-10-26 18:02:00'),('languages_setup','2019-11-18 17:53:53'),('languages_show_for_translators','2019-11-18 17:53:54'),('language_locales','2020-11-02 16:19:32'),('large_print_indexing','2020-03-27 19:21:07'),('last_check_in_status_adjustments','2019-01-28 20:58:57'),('layout_settings','2019-12-18 18:48:10'),('layout_settings_contrast','2021-12-23 19:38:39'),('layout_settings_remove_showSidebarMenu','2020-08-27 17:51:27'),('layout_settings_remove_sidebarMenuButtonText','2021-01-16 22:58:46'),('lexile_branding','2019-01-28 20:58:56'),('libraryAdmin','2019-01-28 20:58:59'),('libraryAllowUsernameUpdates','2020-07-08 14:56:02'),('libraryAlternateCardSetup','2020-06-19 20:20:57'),('libraryAvailableHoldDelay','2020-07-21 13:33:42'),('libraryCardBarcode','2020-06-19 20:20:57'),('libraryProfileRequireNumericPhoneNumbersWhenUpdatingProfile','2020-08-03 20:28:58'),('libraryProfileUpdateOptions','2020-07-21 13:33:41'),('library_1','2019-01-28 20:56:57'),('library_10','2019-01-28 20:56:57'),('library_11','2019-01-28 20:56:57'),('library_12','2019-01-28 20:56:57'),('library_13','2019-01-28 20:56:57'),('library_14','2019-01-28 20:56:57'),('library_15','2019-01-28 20:56:57'),('library_16','2019-01-28 20:56:57'),('library_17','2019-01-28 20:56:57'),('library_18','2019-01-28 20:56:57'),('library_19','2019-01-28 20:56:57'),('library_2','2019-01-28 20:56:57'),('library_20','2019-01-28 20:56:57'),('library_21','2019-01-28 20:56:57'),('library_23','2019-01-28 20:56:57'),('library_24','2019-01-28 20:56:57'),('library_25','2019-01-28 20:56:57'),('library_26','2019-01-28 20:56:57'),('library_28','2019-01-28 20:56:57'),('library_29','2019-01-28 20:56:57'),('library_3','2019-01-28 20:56:57'),('library_30','2019-01-28 20:56:57'),('library_31','2019-01-28 20:56:57'),('library_32','2019-01-28 20:56:57'),('library_33','2019-01-28 20:56:57'),('library_34','2019-01-28 20:56:57'),('library_35_marmot','2019-01-28 20:56:57'),('library_35_nashville','2019-01-28 20:56:57'),('library_36_nashville','2019-01-28 20:56:57'),('library_4','2019-01-28 20:56:57'),('library_5','2019-01-28 20:56:57'),('library_6','2019-01-28 20:56:57'),('library_7','2019-01-28 20:56:57'),('library_8','2019-01-28 20:56:57'),('library_9','2019-01-28 20:56:57'),('library_add_can_update_phone_number','2020-09-16 23:42:31'),('library_add_can_update_work_phone_number','2024-06-25 15:05:20'),('library_add_oai_searching','2019-11-18 17:53:40'),('library_allowDeletingILSRequests','2021-05-06 03:26:45'),('library_allow_home_library_updates','2021-01-17 03:04:54'),('library_allow_remember_pickup_location','2021-01-16 22:58:46'),('library_archive_material_requests','2019-01-28 20:58:56'),('library_archive_material_request_form_configurations','2019-01-28 20:58:56'),('library_archive_pid','2019-01-28 20:58:56'),('library_archive_related_objects_display_mode','2019-01-28 20:58:56'),('library_archive_request_customization','2019-01-28 20:58:56'),('library_archive_search_facets','2019-01-28 20:58:55'),('library_barcodes','2019-01-28 20:58:55'),('library_bookings','2019-01-28 20:58:55'),('library_cancel_in_transit_holds','2024-01-05 09:20:56'),('library_cas_configuration','2019-01-28 20:58:56'),('library_citationOptions','2022-02-21 20:49:29'),('library_CityStateField','2022-12-14 23:10:16'),('library_claim_authorship_customization','2019-01-28 20:58:56'),('library_cleanup','2019-12-18 18:42:59'),('library_consortial_interface','2021-10-13 17:18:10'),('library_contact_links','2019-01-28 20:56:57'),('library_course_reserves_libraries_to_include','2021-11-30 16:30:45'),('library_css','2019-01-28 20:56:57'),('library_default_materials_request_permissions','2021-06-08 16:30:34'),('library_deletePaymentHistoryOlderThan','2024-03-25 16:02:14'),('library_displayName_length','2022-02-21 19:09:05'),('library_eds_integration','2019-01-28 20:58:56'),('library_eds_search_integration','2019-01-28 20:58:56'),('library_enableForgotPasswordLink','2020-02-09 22:24:42'),('library_enableReadingHistory','2022-02-21 20:22:50'),('library_enableSavedSearches','2022-03-01 12:54:52'),('library_enable_web_builder','2020-07-22 12:49:58'),('library_events_setting','2020-04-30 14:33:55'),('library_expiration_warning','2019-01-28 20:56:57'),('library_facets','2019-01-28 20:58:55'),('library_facets_1','2019-01-28 20:58:55'),('library_facets_2','2019-01-28 20:58:55'),('library_field_level_permissions','2021-05-29 21:27:28'),('library_field_permission_updates_21_07_01','2021-06-08 13:55:03'),('library_fine_payment_order','2019-12-03 14:45:39'),('library_fine_updates_msb','2021-03-05 20:16:16'),('library_fine_updates_paypal','2019-11-18 17:53:43'),('library_grouping','2019-01-28 20:56:57'),('library_holdPlacedAt','2022-03-08 21:20:07'),('library_holdRange','2022-12-19 15:25:00'),('library_ils_code_expansion','2019-01-28 20:56:57'),('library_ils_code_expansion_2','2019-01-28 20:56:58'),('library_indexes','2019-11-18 17:53:41'),('library_links','2019-01-28 20:56:57'),('library_links_display_options','2019-01-28 20:56:57'),('library_links_menu_update','2020-09-27 22:33:11'),('library_links_open_in_new_tab','2020-03-27 19:21:05'),('library_links_showToLoggedInUsersOnly','2020-04-30 14:33:47'),('library_links_show_html','2019-01-28 20:56:57'),('library_lists_without_editable_text','2022-11-29 15:37:00'),('library_location_availability_toggle_updates','2019-01-28 20:58:56'),('library_location_axis360_scoping','2020-08-07 14:36:04'),('library_location_boosting','2019-01-28 20:56:57'),('library_location_cloud_library_scoping','2019-11-18 17:53:42'),('library_location_defaults','2019-12-18 18:42:59'),('library_location_display_controls','2019-01-28 20:58:55'),('library_location_hoopla_scoping','2019-11-18 17:53:41'),('library_location_palace_project_scoping','2024-01-05 09:20:52'),('library_location_rbdigital_scoping','2019-11-18 17:53:41'),('library_location_repeat_online','2019-01-28 20:56:57'),('library_location_side_load_scoping','2019-11-18 17:53:47'),('library_login_notes','2020-11-09 19:22:45'),('library_materials_request_limits','2019-01-28 20:56:57'),('library_materials_request_new_request_summary','2019-01-28 20:56:57'),('library_max_fines_for_account_update','2019-01-28 20:58:56'),('library_menu_link_languages','2021-09-11 20:31:09'),('library_nameAndDobUpdates','2022-04-01 23:01:16'),('library_on_order_counts','2019-01-28 20:58:56'),('library_order_information','2019-01-28 20:56:57'),('library_patronNameDisplayStyle','2019-01-28 20:58:56'),('library_patron_messages','2021-03-30 14:30:44'),('library_payment_history','2024-03-25 16:02:14'),('library_pin_reset','2019-01-28 20:56:57'),('library_prevent_expired_card_login','2019-01-28 20:56:57'),('library_prompt_birth_date','2019-01-28 20:58:55'),('library_propay_settings','2021-04-08 13:50:39'),('library_remove_gold_rush','2019-11-18 17:53:41'),('library_remove_overdrive_advantage_info','2020-09-03 19:46:25'),('library_remove_unusedColumns','2019-11-18 17:53:40'),('library_remove_unusedDisplayOptions_3_18','2019-11-18 17:53:40'),('library_remove_unused_recordsToBlackList','2019-11-18 17:53:40'),('library_rename_prospector','2019-11-18 17:53:39'),('library_rename_showPickupLocationInProfile','2021-01-17 03:51:29'),('library_showConvertListsFromClassic','2020-02-09 22:24:42'),('library_showVolumesWithLocalCopiesFirst','2022-11-27 21:08:05'),('library_show_card_expiration_date','2021-08-23 18:45:52'),('library_show_display_name','2019-01-28 20:58:55'),('library_show_language_and_display_in_header','2024-01-05 09:20:55'),('library_show_messaging_settings','2021-10-13 17:18:10'),('library_show_quick_copy','2019-11-18 17:53:42'),('library_show_series_in_main_details','2019-01-28 20:58:56'),('library_sidebar_menu','2019-01-28 20:58:56'),('library_sidebar_menu_button_text','2019-01-28 20:58:56'),('library_sitemap_changes','2020-04-30 14:33:47'),('library_subject_display','2019-01-28 20:58:56'),('library_subject_display_2','2019-01-28 20:58:56'),('library_systemHoldNotes','2022-02-03 03:31:28'),('library_system_message','2020-03-31 18:45:02'),('library_tiktok_link','2021-05-12 22:50:27'),('library_toggle_hold_position','2024-03-25 16:02:15'),('library_top_links','2019-01-28 20:56:57'),('library_use_theme','2019-02-26 00:09:00'),('library_validPickupSystemLength','2021-11-17 19:59:38'),('library_workstation_id_polaris','2021-05-26 16:19:08'),('linked_accounts_switch','2019-01-28 20:58:56'),('listPublisherRole','2019-01-28 20:58:59'),('list_indexing_permission','2020-09-09 18:44:18'),('list_wdiget_list_update_1','2019-01-28 20:58:57'),('list_wdiget_update_1','2019-01-28 20:58:57'),('list_widgets','2019-01-28 20:58:57'),('list_widgets_home','2019-01-28 20:58:57'),('list_widgets_update_1','2019-01-28 20:58:57'),('list_widgets_update_2','2019-01-28 20:58:57'),('list_widget_num_results','2019-01-28 20:58:57'),('list_widget_search_terms','2020-02-09 22:24:43'),('list_widget_style_update','2019-01-28 20:58:57'),('list_widget_update_2','2019-01-28 20:58:57'),('list_widget_update_3','2019-01-28 20:58:57'),('list_widget_update_4','2019-01-28 20:58:57'),('list_widget_update_5','2019-01-28 20:58:57'),('literaryFormIndexingUpdates','2021-09-12 17:01:38'),('lm_library_calendar_events_data','2020-04-30 14:33:55'),('lm_library_calendar_private_feed_settings','2020-04-30 14:33:55'),('lm_library_calendar_settings','2020-04-30 14:33:55'),('loadBadWords','2021-10-27 14:05:27'),('loadCoversFrom020z','2020-04-30 14:33:56'),('loan_rule_determiners_1','2019-01-28 20:59:01'),('loan_rule_determiners_increase_ptype_length','2019-01-28 20:59:01'),('localized_browse_categories','2019-01-28 20:59:02'),('local_urls','2021-07-21 22:25:51'),('locationHistoricCode','2020-06-19 20:20:57'),('location_1','2019-01-28 20:58:55'),('location_10','2019-01-28 20:58:56'),('location_2','2019-01-28 20:58:56'),('location_3','2019-01-28 20:58:56'),('location_4','2019-01-28 20:58:56'),('location_5','2019-01-28 20:58:56'),('location_6','2019-01-28 20:58:56'),('location_7','2019-01-28 20:58:56'),('location_8','2019-01-28 20:58:56'),('location_9','2019-01-28 20:58:56'),('location_additional_branches_to_show_in_facets','2019-01-28 20:58:56'),('location_address','2019-01-28 20:58:56'),('location_add_notes_to_hours','2020-08-03 20:28:58'),('location_allow_multiple_open_hours_per_day','2019-11-18 17:53:42'),('location_facets','2019-01-28 20:58:55'),('location_facets_1','2019-01-28 20:58:55'),('location_field_level_permissions','2021-06-01 15:24:41'),('location_hours','2019-01-28 20:59:01'),('location_include_library_records_to_include','2019-01-28 20:58:56'),('location_increase_code_column_size','2019-01-28 20:58:56'),('location_library_control_shelf_location_and_date_added_facets','2019-01-28 20:58:56'),('location_self_registration_branch','2022-10-06 14:57:01'),('location_show_display_name','2019-01-28 20:58:56'),('location_show_language_and_display_in_header','2024-01-05 09:20:55'),('location_subdomain','2019-01-28 20:58:56'),('location_sublocation','2019-01-28 20:58:56'),('location_sublocation_uniqueness','2019-01-28 20:58:56'),('location_tty_description','2020-11-02 16:19:31'),('login_form_labels','2019-01-28 20:58:56'),('login_unless_in_library','2021-12-27 20:24:06'),('logout_after_hold_options','2022-01-07 00:06:56'),('logo_linking','2019-01-28 20:58:56'),('longer_stripe_keys','2024-01-05 09:20:58'),('lowercase_all_tables','2023-03-29 09:39:10'),('main_location_switch','2019-01-28 20:58:56'),('make_nyt_user_list_publisher','2020-02-09 22:24:42'),('make_volumes_case_sensitive','2021-08-23 18:45:42'),('manageMaterialsRequestFieldsToDisplay','2019-01-28 20:58:59'),('marcImport','2019-01-28 20:59:01'),('marcImport_1','2019-01-28 20:59:01'),('marcImport_2','2019-01-28 20:59:01'),('marcImport_3','2019-01-28 20:59:01'),('marc_last_modified','2021-07-15 05:01:14'),('masquerade_automatic_timeout_length','2019-01-28 20:58:56'),('masquerade_permissions','2020-09-07 15:12:17'),('masquerade_ptypes','2019-01-28 20:59:01'),('materialRequestsRole','2019-01-28 20:58:59'),('materialsRequest','2019-01-28 20:58:58'),('materialsRequestFixColumns','2019-01-28 20:58:59'),('materialsRequestFormats','2019-01-28 20:58:59'),('materialsRequestFormFields','2019-01-28 20:58:59'),('materialsRequestLibraryId','2019-01-28 20:58:59'),('materialsRequestStaffComments','2021-08-25 16:40:52'),('materialsRequestStatus','2019-01-28 20:58:59'),('materialsRequestStatus_update1','2019-01-28 20:58:59'),('materialsRequest_update1','2019-01-28 20:58:58'),('materialsRequest_update2','2019-01-28 20:58:58'),('materialsRequest_update3','2019-01-28 20:58:58'),('materialsRequest_update4','2019-01-28 20:58:58'),('materialsRequest_update5','2019-01-28 20:58:58'),('materialsRequest_update6','2019-01-28 20:58:58'),('materialsRequest_update7','2019-01-28 20:58:59'),('materials_request_days_to_keep','2019-01-28 20:58:56'),('materials_request_format_active_for_new_requests','2022-11-02 02:59:14'),('memory_index','2019-11-18 17:53:59'),('memory_table','2019-11-18 17:53:59'),('memory_table_size_increase','2019-11-18 17:53:59'),('merged_records','2019-01-28 20:58:59'),('migrate_form_submissions','2024-01-05 09:20:58'),('migrate_library_sso_settings','2023-02-09 17:11:58'),('migrate_records_owned','2023-01-04 22:41:33'),('millenniumTables','2019-01-28 20:59:01'),('modifyColumnSizes_1','2011-11-10 19:46:03'),('modules','2019-11-18 17:53:39'),('module_log_information','2020-03-31 18:45:02'),('module_settings_information','2021-02-12 01:49:54'),('monitorAntivirus','2024-01-05 09:20:55'),('more_details_customization','2019-01-28 20:58:56'),('move_aspen_lida_settings','2022-08-17 22:43:45'),('move_cookieConsent_to_library_settings','2024-01-05 09:20:39'),('move_includePersonalAndCorporateNamesInTopics','2023-03-10 17:47:18'),('move_library_quick_searches','2022-08-17 22:43:45'),('move_location_app_settings','2022-08-17 22:43:45'),('move_unchanged_scope_data_to_item','2021-07-16 16:05:20'),('ncr_library_setting','2024-06-25 15:05:22'),('ncr_payments_settings','2024-06-25 15:05:22'),('ncr_permissions','2024-06-25 15:05:22'),('nearby_book_store','2019-01-28 20:59:01'),('newRolesJan2016','2019-01-28 20:58:59'),('new_search_stats','2019-01-28 20:58:58'),('new_york_times_user_updates','2020-10-27 17:06:36'),('nongrouped_records','2019-01-28 20:58:59'),('non_numeric_ptypes','2019-01-28 20:59:01'),('normalize_scope_data','2021-07-15 08:06:59'),('notices_1','2011-12-02 18:26:28'),('notifications_report_permissions','2022-08-22 18:57:13'),('notInterested','2019-01-28 20:58:58'),('notInterestedWorks','2019-01-28 20:58:58'),('notInterestedWorksRemoveUserIndex','2019-01-28 20:58:58'),('novelist_data','2019-01-28 20:59:02'),('novelist_data_indexes','2019-11-18 17:53:56'),('novelist_data_json','2019-11-18 17:53:56'),('novelist_settings','2020-01-03 19:47:26'),('nyt_api_settings','2020-01-09 01:49:33'),('nyt_update_log_numSkipped','2021-03-29 21:10:57'),('OAI_default_image','2024-01-05 09:20:37'),('oai_record_lastSeen','2023-05-08 14:13:51'),('oai_website_permissions','2020-09-09 15:44:06'),('object_history','2020-05-14 19:25:09'),('object_history_action_type','2022-12-22 18:35:24'),('object_history_field_lengths','2020-05-14 19:25:09'),('offline_circulation','2019-01-28 20:59:02'),('offline_holds','2019-01-28 20:59:02'),('offline_holds_update_1','2019-01-28 20:59:02'),('offline_holds_update_2','2019-01-28 20:59:02'),('omdb_disableCoversWithNoDates','2021-11-09 18:41:08'),('omdb_settings','2020-03-27 19:52:27'),('only_allow_100_titles_per_collection_spotlight','2023-05-08 17:10:51'),('open_archives_collection','2019-11-18 17:53:54'),('open_archives_collection_filtering','2019-11-18 17:53:54'),('open_archives_collection_subjects','2019-11-18 17:53:54'),('open_archives_deleted_collections','2022-05-10 13:49:53'),('open_archives_facets','2024-01-05 09:20:45'),('open_archives_facets_default','2024-01-05 09:20:45'),('open_archives_image_regex','2021-09-30 15:57:01'),('open_archives_index_all_sets','2024-03-25 16:02:13'),('open_archives_loadOneMonthAtATime','2019-11-18 17:53:55'),('open_archives_log','2019-11-18 17:53:55'),('open_archives_metadata_format','2024-03-25 16:02:13'),('open_archives_module_add_log','2020-03-31 18:45:02'),('open_archives_module_add_settings','2021-02-12 01:49:54'),('open_archives_multiple_imageRegex','2022-02-01 15:31:48'),('open_archives_record','2019-11-18 17:53:54'),('open_archives_reindex_all_collections_22_05','2022-05-10 13:49:53'),('open_archives_scoping','2020-12-14 17:03:19'),('open_archives_usage_add_instance','2020-12-21 17:31:10'),('open_archive_tracking_adjustments','2019-11-18 17:53:55'),('optionalUpdates','2024-01-05 09:20:48'),('optionalUpdates23_10','2024-01-05 09:20:48'),('overDriveDisableRequestLogging','2021-11-22 17:42:28'),('overdrive_account_cache','2012-01-02 22:16:10'),('overdrive_add_settings','2019-11-18 17:53:47'),('overdrive_add_setting_to_log','2020-12-14 17:03:19'),('overdrive_add_setting_to_product_availability','2020-12-14 17:03:19'),('overdrive_add_setting_to_scope','2020-12-14 17:03:19'),('overdrive_add_update_info_to_settings','2019-11-18 17:53:47'),('overdrive_allow_large_deletes','2021-02-06 21:31:44'),('overdrive_api_data','2016-06-30 17:11:12'),('overdrive_api_data_availability_shared','2019-11-18 17:53:47'),('overdrive_api_data_availability_type','2016-06-30 17:11:12'),('overdrive_api_data_crossRefId','2019-01-28 21:27:59'),('overdrive_api_data_metadata_isOwnedByCollections','2019-01-28 21:27:59'),('overdrive_api_data_update_1','2016-06-30 17:11:12'),('overdrive_api_data_update_2','2016-06-30 17:11:12'),('overdrive_api_remove_old_tables','2019-11-18 17:53:47'),('overdrive_availability_update_indexes','2021-02-06 21:31:44'),('overdrive_circulationEnabled','2021-09-15 04:46:04'),('overdrive_client_credentials','2021-01-14 16:33:48'),('overdrive_enable_allow_large_deletes','2022-07-28 19:43:51'),('overdrive_encrypt_client_secret','2022-02-27 18:40:30'),('overdrive_encrypt_client_secret_in_scope','2022-02-27 18:40:30'),('overdrive_handle_ise','2022-02-27 18:40:30'),('overdrive_index_cross_ref_id','2024-03-25 16:02:14'),('overdrive_integration','2019-01-28 20:58:56'),('overdrive_integration_2','2019-01-28 20:58:56'),('overdrive_integration_3','2019-01-28 20:58:56'),('overdrive_max_extraction_threads','2021-09-22 16:15:42'),('overdrive_module_add_log','2020-03-31 18:45:02'),('overdrive_module_add_settings','2021-02-12 01:49:54'),('overdrive_part_count','2020-04-30 14:33:48'),('overdrive_showLibbyPromo','2021-11-18 04:45:20'),('overdrive_usage_add_instance','2020-12-21 17:30:33'),('overdrive_useFulfillmentInterface','2021-11-16 04:58:47'),('palace_project_cancellation_url','2024-03-25 16:02:12'),('palace_project_collection','2024-04-11 17:23:35'),('palace_project_collection_name','2024-03-25 16:02:12'),('palace_project_exportLog','2024-01-05 09:20:52'),('palace_project_identifier_length','2024-01-05 09:20:53'),('palace_project_identifier_length2','2024-01-05 09:20:55'),('palace_project_permissions','2024-01-05 09:20:52'),('palace_project_restrict_scopes_by_audience','2024-04-11 17:23:35'),('palace_project_return_url','2024-03-25 16:02:12'),('palace_project_titles','2024-01-05 09:20:53'),('palace_project_title_availability','2024-04-11 17:23:35'),('palace_project_title_length','2024-03-25 16:02:12'),('palace_project_update_title_uniqueness','2024-03-25 16:02:13'),('payment_paidFrom','2021-11-16 05:33:08'),('paypal_error_email','2022-05-06 00:28:41'),('paypal_moveSettingsFromLibrary','2021-11-17 20:41:08'),('paypal_settings','2021-07-12 16:44:30'),('paypal_showPayLater','2021-11-17 19:59:38'),('pdfView','2021-07-16 16:03:44'),('permissions_bad_words','2022-04-04 16:33:39'),('permissions_community_sharing','2023-04-10 18:49:00'),('permissions_create_administer_user_agents','2024-06-25 15:05:21'),('permissions_create_events_assabet','2024-06-25 15:05:20'),('permissions_create_events_communico','2023-03-15 23:02:46'),('permissions_create_events_springshare','2022-03-23 00:46:39'),('permissions_ecommerce_deluxe','2023-03-27 09:11:11'),('permissions_ecommerce_payflow','2023-05-05 21:42:54'),('permissions_ecommerce_square','2024-01-05 09:20:35'),('permissions_ecommerce_stripe','2024-01-05 09:20:58'),('permissions_events_facets','2024-01-05 09:20:39'),('permissions_open_archives_facets','2024-01-05 09:20:44'),('permissions_self_reg_forms','2024-01-05 09:20:49'),('permissions_view_scheduled_updates','2023-04-27 15:41:47'),('permissions_website_facets','2024-01-05 09:20:46'),('permission_hide_series','2024-03-25 16:02:14'),('pinResetRules','2022-03-01 12:54:52'),('pinterest_library_contact_links','2020-06-10 12:22:30'),('pin_reset_token','2022-01-05 16:27:08'),('placards','2019-12-03 14:45:40'),('placard_alt_text','2021-10-01 15:06:15'),('placard_languages','2021-09-08 14:55:34'),('placard_location_scope','2020-03-27 19:21:11'),('placard_timing','2020-11-30 16:59:15'),('placard_trigger_exact_match','2020-06-29 18:17:29'),('placard_updates_1','2020-03-27 19:21:11'),('plural_grouped_work_facet','2021-07-06 15:52:37'),('polaris_full_update_21_13','2021-09-30 15:57:01'),('polaris_item_identifiers','2021-09-30 15:57:01'),('populate_list_entry_titles','2021-06-08 13:55:03'),('processes_to_stop','2024-03-25 16:02:14'),('processes_to_stop_time','2024-03-25 16:02:14'),('process_empty_grouped_works','2022-06-14 22:42:32'),('propay_accountId_to_user','2021-07-26 21:59:48'),('propay_certStr_length','2021-08-23 18:45:43'),('propay_settings','2021-07-12 16:44:30'),('propay_settings_additional_fields','2021-07-26 21:59:48'),('ptype','2019-01-28 20:59:01'),('pTypesForLibrary','2019-01-28 20:58:55'),('ptype_allowStaffViewDisplay','2022-02-21 19:09:05'),('ptype_descriptions','2021-05-03 20:49:18'),('ptype_length','2022-12-14 23:10:16'),('ptype_vdx_client_category','2022-12-19 15:25:00'),('public_lists_to_include','2019-01-28 20:58:56'),('public_lists_to_include_defaults','2019-11-18 17:53:39'),('purchase_link_tracking','2019-01-28 20:58:58'),('quipu_ecard_settings','2021-06-11 21:21:10'),('quipu_e_renew','2024-01-05 09:20:56'),('rbdigital_add_settings','2019-11-18 17:53:49'),('rbdigital_add_setting_to_availability','2020-03-27 19:21:10'),('rbdigital_add_setting_to_log','2020-03-27 19:21:08'),('rbdigital_add_setting_to_scope','2020-03-27 19:21:07'),('rbdigital_availability','2019-03-06 15:43:14'),('rbdigital_exportLog','2019-03-05 05:46:15'),('rbdigital_exportLog_update','2019-11-18 17:53:49'),('rbdigital_exportTables','2019-03-05 16:31:43'),('rbdigital_issues_tables','2020-03-27 19:21:10'),('rbdigital_issue_tracking','2020-03-27 19:21:10'),('rbdigital_lookup_patrons_by_email','2020-02-09 22:24:43'),('rbdigital_magazine_export','2019-11-18 17:53:49'),('rbdigital_module_add_log','2020-03-31 18:45:02'),('rbdigital_module_add_settings','2021-02-12 01:49:54'),('rbdigital_module_add_settings2','2021-05-06 03:22:55'),('rbdigital_scoping','2019-11-18 17:53:49'),('rbdigital_usage_add_instance','2020-12-21 17:30:04'),('readerName2','2024-01-05 09:20:55'),('readingHistory','2019-01-28 20:58:58'),('readingHistoryIsILL','2024-01-05 09:20:40'),('readingHistoryUpdate1','2019-01-28 20:58:58'),('readingHistory_deletion','2019-01-28 20:58:58'),('readingHistory_work','2019-01-28 20:58:58'),('reading_history_updates_change_ils','2023-01-31 00:46:53'),('rebuildThemes21_03','2021-03-05 20:16:16'),('recaptcha_settings','2020-04-30 14:33:56'),('recommendations_optOut','2019-01-28 20:58:58'),('records_to_exclude_increase_length','2022-02-01 15:31:57'),('records_to_exclude_increase_length_to_400','2022-12-09 21:56:32'),('records_to_include_2017-06','2019-01-28 20:58:57'),('records_to_include_2018-03','2019-01-28 20:58:57'),('records_to_include_updates','2023-01-04 22:41:33'),('record_files_table','2020-04-30 14:33:56'),('record_grouping_log','2019-01-28 20:59:02'),('record_identifiers_to_reload','2020-02-09 22:24:43'),('record_parents','2022-10-06 14:57:01'),('record_parents_index','2022-12-19 21:52:45'),('record_suppression_no_marc','2021-07-21 22:25:50'),('redwood_user_contribution','2019-11-18 17:53:55'),('refetch_novelist_data_21_09_02','2021-08-23 18:45:42'),('regroupAllRecordsDuringNightlyIndex','2022-05-26 19:42:54'),('regroup_21_03','2021-03-05 20:16:16'),('regroup_21_07','2021-05-26 16:19:08'),('reindexLog','2019-01-28 20:59:01'),('reindexLog_1','2019-01-28 20:59:01'),('reindexLog_2','2019-01-28 20:59:01'),('reindexLog_grouping','2019-01-28 20:59:01'),('reindexLog_nightly_updates','2020-05-14 19:25:09'),('reindexLog_unique_index','2021-05-12 22:50:28'),('reloadBadWords','2022-04-04 17:16:19'),('remove2FADefaultRememberMe','2022-01-05 16:27:08'),('removeGroupedWorkSecondDateUpdatedIndex','2021-09-22 16:15:42'),('removeIslandoraTables','2021-09-01 18:32:47'),('removeProPayFromLibrary','2021-07-12 16:44:30'),('remove_bookings','2021-08-23 18:45:52'),('remove_browse_tables','2019-01-28 20:59:02'),('remove_collection_from_palace_project','2024-04-11 17:23:35'),('remove_consortial_results_in_search','2019-01-28 20:58:56'),('remove_deprecated_self_reg_columns','2024-06-25 15:05:22'),('remove_detailed_hold_notice_configuration','2022-07-05 21:44:33'),('remove_donation_form_fields_table','2024-03-25 16:02:13'),('remove_econtent_support_address','2021-09-01 18:32:47'),('remove_editorial_reviews','2019-11-18 17:53:56'),('remove_empty_MyFavorites_lists','2022-07-05 21:44:33'),('remove_grouped_work_solr_core','2022-06-14 15:52:04'),('remove_holding_branch_label','2020-01-03 19:47:11'),('remove_id_from_grouped_work_record_item_url','2022-06-14 15:52:10'),('remove_individual_marc_path','2024-06-25 15:05:20'),('remove_library_and location_boost','2019-11-18 17:53:56'),('remove_library_location_boosting','2019-11-18 17:53:39'),('remove_library_themeName','2021-05-29 22:52:59'),('remove_library_top_links','2020-08-31 17:13:32'),('remove_list_entries_for_deleted_lists','2022-07-06 22:30:42'),('remove_list_widget_list_links','2020-02-09 22:24:43'),('remove_loan_rules','2021-06-08 13:54:58'),('remove_merged_records','2020-02-09 22:24:58'),('remove_old_homeLink','2021-04-20 23:30:13'),('remove_old_payment_lines','2024-03-26 16:08:04'),('remove_old_resource_tables','2019-01-28 20:59:02'),('remove_old_user_rating_table','2020-02-09 22:24:58'),('remove_order_options','2019-01-28 20:58:56'),('remove_overdrive_api_data_needsUpdate','2019-11-18 17:53:47'),('remove_ptype_from_library_location','2021-07-26 21:59:49'),('remove_rbdigital','2021-07-17 06:39:22'),('remove_record_grouping_log','2020-02-09 22:24:58'),('remove_scope_tables','2021-07-17 23:38:41'),('remove_scope_triggers','2021-07-21 22:25:35'),('remove_spelling_words','2019-11-18 17:53:56'),('remove_suppress_itemless_bibs_setting','2024-01-05 09:20:48'),('remove_titleId2_index_from_axis360_title_availability','2023-05-16 18:09:24'),('remove_unused_enrichment_and_full_record_options','2019-01-28 20:58:56'),('remove_unused_fields_23_07','2024-01-05 09:20:35'),('remove_unused_fields_23_07b','2024-01-05 09:20:35'),('remove_unused_location_options_2015_14_0','2019-01-28 20:58:56'),('remove_unused_options','2019-01-28 20:59:02'),('remove_used_triggers','2024-06-25 15:05:20'),('remove_web_builder_menu','2024-01-05 09:20:55'),('rename_availability_facet','2024-01-05 09:20:51'),('rename_axis360_permission','2024-01-05 09:20:54'),('rename_boundless_module','2024-01-05 09:20:54'),('rename_general_settings_table','2023-02-22 20:48:38'),('rename_materialreq_usage_locID_column','2023-01-12 15:36:19'),('rename_overdrive_permission','2024-01-05 09:20:55'),('rename_prospector_to_innreach2','2024-01-05 09:20:34'),('rename_prospector_to_innreach3','2024-01-05 09:20:34'),('rename_tables','2019-01-28 20:59:01'),('rename_to_collection_spotlight','2020-02-09 22:24:43'),('renew_by_ptype','2024-01-05 09:20:56'),('renew_error','2021-07-06 15:52:37'),('replace_arial_fonts','2024-04-11 17:23:35'),('replace_arial_fonts_2','2024-06-25 15:05:20'),('reporting_permissions','2020-09-23 22:36:33'),('reprocess_all_sideloads_22_06_04','2022-06-14 16:54:19'),('requireLogin_webResource','2022-01-05 16:27:08'),('requires_address_info','2024-03-25 16:02:13'),('resource_subject','2019-01-28 20:58:58'),('resource_update3','2019-01-28 20:58:58'),('resource_update4','2019-01-28 20:58:58'),('resource_update5','2019-01-28 20:58:58'),('resource_update6','2019-01-28 20:58:58'),('resource_update7','2019-01-28 20:58:58'),('resource_update8','2019-01-28 20:58:58'),('resource_update_table','2019-01-28 20:58:58'),('resource_update_table_2','2019-01-28 20:58:58'),('restrictLoginOfLibraryMembers','2022-04-18 16:48:25'),('restrictLoginToLibraryMembers','2022-03-15 04:54:50'),('re_enable_hoopla_module_auto_restart','2020-04-30 14:33:48'),('right_hand_sidebar','2019-01-28 20:58:56'),('roles_1','2019-01-28 20:58:56'),('roles_2','2019-01-28 20:58:56'),('rosen_levelup_settings','2020-07-30 21:13:34'),('rosen_levelup_settings_school_prefix','2020-08-27 17:51:27'),('runNightlyFullIndex','2020-05-14 19:25:09'),('saved_searches_created_default','2019-11-18 17:53:58'),('saved_search_hasNewResults','2022-07-26 18:27:38'),('saved_search_log','2022-07-26 17:18:51'),('saved_search_newTitles','2022-07-27 18:09:22'),('scheduled_update_remote_update','2023-05-05 14:22:08'),('scheduled_work_index','2020-02-09 22:24:43'),('search_increaseTitleLength','2021-11-18 04:45:20'),('search_options','2024-01-05 09:20:54'),('search_results_view_configuration_options','2019-01-28 20:58:56'),('search_sources','2019-01-28 20:58:56'),('search_sources_1','2019-01-28 20:58:56'),('search_test_description','2022-03-08 21:20:07'),('search_test_notes','2022-02-21 19:09:05'),('search_test_search_index_multiple_terms','2022-02-21 19:09:05'),('search_test_settings','2022-02-21 19:09:05'),('secondary phone number','2024-01-05 09:20:38'),('select_ILL_system','2024-01-05 09:20:51'),('selfRegistrationCustomizations','2020-06-10 12:22:30'),('selfRegistrationLocationRestrictions','2020-03-27 19:21:05'),('selfRegistrationPasswordNotes','2020-06-10 12:22:31'),('selfRegistrationUrl','2020-04-30 14:33:48'),('selfRegistrationZipCodeValidation','2020-10-30 19:03:30'),('selfreg_customization','2019-01-28 20:58:56'),('selfreg_template','2019-01-28 20:58:56'),('self_check_checkout_location','2024-04-11 17:23:35'),('self_registration_form','2024-01-05 09:20:50'),('self_registration_parent_sms','2022-10-06 14:57:01'),('self_registration_require_phone_and_email','2022-10-06 14:57:01'),('self_reg_barcode_prefix','2024-01-05 09:20:50'),('self_reg_default','2024-01-05 09:20:50'),('self_reg_form_id','2024-01-05 09:20:50'),('self_reg_form_permission','2024-01-05 09:20:50'),('self_reg_form_update','2024-03-25 16:02:17'),('self_reg_min_age','2024-03-25 16:02:16'),('self_reg_no_duplicate_check','2024-01-05 09:20:58'),('self_reg_sections','2024-03-25 16:02:13'),('self_reg_sections_assignment','2024-03-25 16:02:13'),('self_reg_symphony_only','2024-03-25 16:02:17'),('self_reg_tos','2024-03-25 16:02:17'),('sendgrid_settings','2019-11-18 17:53:58'),('session_update_1','2019-01-28 20:59:02'),('setup_default_indexing_profiles','2019-01-28 20:58:57'),('setUsePreferredNameInIlsOnUpdate','2023-02-01 16:32:49'),('set_include_econtent_and_onorder','2023-02-02 16:09:44'),('set_include_holdable_to_zero','2023-01-18 15:01:50'),('shared_content_in_greenhouse','2023-03-22 14:38:40'),('showCardExpirationDate','2021-08-23 18:45:52'),('showInSelectInterface','2021-09-01 18:32:47'),('showRelatedRecordLabels','2022-08-09 13:30:48'),('showTopOfPageButton','2021-11-03 23:21:36'),('showWhileYouWait','2020-05-14 19:25:08'),('show_catalog_options_in_profile','2019-01-28 20:58:56'),('show_grouped_hold_copies_count','2019-01-28 20:58:56'),('show_item_notes_in_copies','2024-06-25 15:05:21'),('show_library_hours_notice_on_account_pages','2019-01-28 20:58:56'),('show_place_hold_on_unavailable','2019-01-28 20:58:56'),('show_quick_poll_results','2024-01-05 09:20:55'),('show_Refresh_Account_Button','2019-01-28 20:58:56'),('sideloads','2019-11-18 17:53:46'),('sideload_access_button_label','2021-10-08 00:07:19'),('sideload_convert_to_econtent','2024-06-25 15:05:21'),('sideload_defaults','2020-06-10 12:22:31'),('sideload_files','2020-09-23 22:36:33'),('sideload_log','2019-11-18 17:53:47'),('sideload_restrict_scopes_by_audience','2024-04-11 17:23:35'),('sideload_scope_match_and_rewrite','2019-12-11 21:32:56'),('sideload_scope_url_match_and_rewrite_embiggening','2021-04-22 01:34:03'),('sideload_scoping','2019-11-18 17:53:47'),('sideload_show_status','2021-10-13 17:18:10'),('sideload_usage_add_instance','2020-12-21 17:22:26'),('sideload_use_link_text_for_button_label','2024-06-25 15:05:21'),('sierra_exportLog','2019-01-28 20:58:57'),('sierra_exportLog_stats','2019-01-28 20:58:58'),('sierra_export_additional_fixed_fields','2020-01-03 19:47:11'),('sierra_export_field_mapping','2019-01-28 20:58:58'),('sierra_export_field_mapping_item_fields','2019-01-28 20:58:58'),('sierra_order_record_options','2023-04-10 22:54:46'),('sierra_public_note_export','2021-12-16 23:09:22'),('slow_pages','2019-11-18 17:53:58'),('slow_page_granularity','2019-11-18 17:53:59'),('snippet_contains_analytics_cookies','2024-06-25 15:05:20'),('solrTimeoutStats','2022-02-21 19:09:05'),('sort_owned_editions_first','2022-09-10 21:14:14'),('spelling_optimization','2019-01-28 20:59:01'),('split_user_fields','2024-01-05 09:20:39'),('springshare_libcal_events','2022-03-23 00:46:39'),('springshare_libcal_settings','2022-03-23 00:46:39'),('springshare_libcal_settings_multiple_calId','2022-03-23 00:55:20'),('sso_setting_add_entity_id','2022-11-02 02:59:14'),('staffSettingsAllowNegativeUserId','2020-10-30 19:03:30'),('staffSettingsTable','2019-01-28 20:58:59'),('staff_members','2020-07-22 12:49:59'),('staff_ptypes','2020-09-07 18:23:04'),('storeNYTLastUpdated','2021-07-16 16:03:44'),('storeRecordDetailsInDatabase','2021-07-11 21:04:56'),('storeRecordDetailsInSolr','2021-06-27 13:24:51'),('store_form_submissions_by_field','2024-01-05 09:20:58'),('store_grouped_work_records_items_scopes','2021-05-12 22:50:28'),('store_grouped_work_record_item_scope','2021-06-26 19:58:18'),('store_marc_in_db','2021-07-14 12:58:06'),('store_pickup_location','2021-01-16 22:58:46'),('store_place_of_publication','2024-03-25 16:02:14'),('store_scope_details_in_concatenated_fields','2021-07-17 23:38:41'),('sub-browse_categories','2019-01-28 20:59:02'),('summon_integration','2024-03-25 16:02:12'),('summon_password_length','2024-03-25 16:02:13'),('summon_record_usage','2024-03-25 16:02:11'),('summon_usage_add_instance','2024-03-25 16:02:12'),('superCatalogerRole','2020-06-10 12:22:31'),('support_connection','2022-03-03 00:31:41'),('suppressRecordsWithUrlsMatching','2021-09-08 23:42:15'),('symphony_city_state','2024-01-05 09:20:51'),('symphony_self_registration_profile','2022-08-30 22:03:33'),('syndetics_data','2019-01-28 20:59:02'),('syndetics_data_update_1','2019-11-18 17:53:56'),('syndetics_settings','2020-01-03 19:47:26'),('syndetics_unbound','2021-05-06 03:22:55'),('syndetics_unbound_account_number','2021-05-26 16:19:08'),('systemVariables_libraryToUseForPayments','2021-11-18 04:14:08'),('system_messages','2020-11-30 20:23:35'),('system_messages_permissions','2020-11-30 20:24:27'),('system_message_style','2020-12-14 17:03:19'),('test_roles_permission','2020-09-07 18:23:04'),('themes_additional_css','2020-01-08 18:33:49'),('themes_additional_fonts','2020-02-09 22:24:45'),('themes_badges','2020-08-02 16:33:58'),('themes_browse_category_colors','2020-01-09 19:54:16'),('themes_browse_category_image_size','2022-06-27 23:44:13'),('themes_browse_image_layout','2022-07-06 19:41:47'),('themes_button_colors','2020-02-09 22:24:56'),('themes_button_radius','2020-01-09 19:54:14'),('themes_button_radius2','2020-02-09 22:24:44'),('themes_capitalize_browse_categories','2020-02-09 22:24:45'),('themes_editions_button_colors','2020-08-02 14:44:38'),('themes_favicon','2019-11-18 17:53:51'),('themes_fonts','2019-11-18 17:53:53'),('themes_footer_design','2020-02-09 22:24:57'),('themes_header_buttons','2019-11-18 17:53:51'),('themes_header_colors','2019-11-18 17:53:50'),('themes_header_colors_2','2019-11-18 17:53:50'),('themes_link_color','2020-08-02 16:09:04'),('themes_link_hover_color','2020-08-12 15:04:24'),('themes_panel_body_design','2020-08-02 18:58:16'),('themes_panel_design','2020-06-19 20:20:59'),('themes_primary_colors','2019-11-18 17:53:52'),('themes_results_breadcrumbs','2020-08-12 15:04:26'),('themes_search_tools','2020-08-12 15:04:26'),('themes_secondary_colors','2019-11-18 17:53:53'),('themes_setup','2019-02-24 20:32:34'),('themes_sidebar_highlight_colors','2020-02-09 22:24:44'),('themes_tools_button_colors','2020-08-02 17:36:02'),('theme_cover_default_image','2024-01-05 09:20:36'),('theme_defaults_for_logo_and_favicon','2020-09-04 12:26:28'),('theme_explore_more_images','2024-01-05 09:20:49'),('theme_format_category_icons','2024-01-05 09:20:36'),('theme_modal_dialog','2020-09-04 20:08:55'),('theme_name_length','2019-01-28 20:58:56'),('theme_reorganize_menu','2020-09-04 15:47:26'),('third_party_registration','2024-01-05 09:20:35'),('ticket_creation','2022-03-30 22:40:45'),('ticket_trends','2024-01-05 09:20:34'),('toggle_novelist_series','2024-06-25 15:05:20'),('track_axis360_record_usage','2020-09-29 21:40:16'),('track_axis360_stats','2020-09-29 21:40:16'),('track_axis360_user_usage','2020-09-29 21:40:16'),('track_cloud_library_record_usage','2019-11-18 17:53:55'),('track_cloud_library_user_usage','2019-11-18 17:53:55'),('track_ebscohost_user_usage','2022-06-24 13:38:50'),('track_ebsco_eds_user_usage','2020-07-21 13:33:42'),('track_event_user_usage','2020-04-30 14:33:56'),('track_hoopla_record_usage','2019-11-18 17:53:48'),('track_hoopla_user_usage','2019-11-18 17:53:48'),('track_ils_record_usage','2019-11-18 17:53:45'),('track_ils_self_registrations','2020-04-30 14:33:48'),('track_ils_user_usage','2019-11-18 17:53:45'),('track_open_archive_record_usage','2019-11-18 17:53:54'),('track_open_archive_user_usage','2019-11-18 17:53:54'),('track_overdrive_record_usage','2019-11-18 17:53:48'),('track_overdrive_stats','2021-02-06 21:31:45'),('track_overdrive_user_usage','2019-11-18 17:53:47'),('track_palace_project_record_usage','2024-03-25 16:02:12'),('track_palace_project_user_usage','2024-03-25 16:02:12'),('track_pdf_downloads','2020-04-30 14:33:48'),('track_pdf_views','2020-07-08 14:56:03'),('track_rbdigital_magazine_usage','2019-11-18 17:53:49'),('track_rbdigital_record_usage','2019-11-18 17:53:49'),('track_rbdigital_user_usage','2019-11-18 17:53:49'),('track_sideload_record_usage','2019-11-18 17:53:47'),('track_sideload_user_usage','2019-11-18 17:53:47'),('track_spammy_urls_by_ip','2023-05-22 02:37:31'),('track_summon_user_usage','2024-03-25 16:02:11'),('track_supplemental_file_downloads','2020-05-14 19:25:09'),('track_website_user_usage','2019-11-18 17:53:55'),('translatable_text_blocks','2024-03-25 16:02:12'),('translations','2019-11-18 17:53:54'),('translation_case_sensitivity','2020-02-09 22:24:58'),('translation_map_regex','2019-01-28 20:58:57'),('translation_terms','2019-11-18 17:53:54'),('translation_term_case_sensitivity','2020-03-05 22:53:47'),('translation_term_default_text','2020-01-08 18:33:50'),('translation_term_increase_length','2020-07-29 19:28:26'),('translator_role','2019-11-18 17:53:54'),('treatBibOrItemHoldsAs','2021-08-23 18:45:52'),('treatLibraryUseOnlyGroupedStatusesAsAvailable','2022-04-13 13:57:12'),('treat_unknown_audience_as','2021-07-06 15:52:37'),('truncate_donation_form_fields','2023-03-02 22:15:39'),('twilio_settings','2024-01-05 09:20:37'),('two_factor_auth','2021-12-23 19:38:39'),('two_factor_auth_permission','2021-12-23 19:38:39'),('unknown_language_handling','2020-03-27 19:21:06'),('updateCatUsername','2024-01-05 09:20:48'),('updateDefaultConfiguration','2022-06-03 19:41:08'),('updateDefaultConfiguration2','2022-06-07 19:15:33'),('updateGroupedWorkFacetReadingtoAudience','2022-06-03 19:41:07'),('updateGroupedWorkFacetReadling','2022-06-03 19:41:07'),('updateThemes','2023-04-05 23:58:09'),('updateThemesFinal','2023-04-07 23:29:23'),('update_api_usage_uniqueness','2023-01-18 17:56:46'),('update_aspen_site_stats','2022-07-11 23:53:34'),('update_carlx_indexing_class','2024-01-05 09:20:43'),('update_cellphone_symphony','2024-01-05 09:20:52'),('update_collection_spotlight_number_of_titles','2024-01-05 09:20:35'),('update_dates_scheduled_updates','2023-04-27 15:41:47'),('update_dates_scheduled_updates2','2023-05-03 00:41:10'),('update_default_boost_limits','2024-01-05 09:20:54'),('update_deluxe_remittance_id','2023-03-30 07:32:08'),('update_grouped_work_more_details','2019-12-19 15:29:27'),('update_indexes_for_grouped_works','2023-03-14 15:41:44'),('update_item_status','2021-08-23 18:45:52'),('update_list_entry_titles','2023-02-16 22:11:17'),('update_notification_onboarding_status','2024-01-05 09:20:36'),('update_notification_permissions','2022-10-06 14:57:02'),('update_overdrive_fulfillment','2022-01-11 18:52:41'),('update_plural_grouped_work_facet_label','2021-07-11 21:04:55'),('update_spotlight_sources','2020-06-10 12:22:31'),('update_useHomeLink','2021-04-20 23:30:13'),('update_useHomeLink_tinyint','2021-04-20 23:30:13'),('update_userAlertPreferences','2022-10-06 14:57:02'),('update_user_list_module_log_settings','2024-04-11 17:23:35'),('update_user_notification_onboard','2024-01-05 09:20:57'),('upload_list_cover_permissions','2021-05-29 19:03:49'),('username_field','2024-06-25 15:05:20'),('userPayments_addTransactionType','2021-11-19 22:02:06'),('userPaymentTransactionId','2021-11-21 17:29:02'),('userRatings1','2019-01-28 20:58:58'),('users_to_tasks','2022-12-12 15:26:49'),('user_account','2019-01-28 20:58:56'),('user_account_cache_volume_length','2021-04-08 13:50:40'),('user_account_summary_cache','2021-03-22 16:15:20'),('user_account_summary_expiration_date_extension','2021-04-08 13:50:39'),('user_account_summary_remaining_checkouts','2021-03-23 16:36:54'),('user_add_last_reading_history_update_time','2021-01-26 22:43:09'),('user_add_rbdigital_id','2019-11-18 17:53:44'),('user_add_rbdigital_username_password','2019-11-18 17:53:44'),('user_agent_tracking','2024-06-25 15:05:21'),('user_assign_role_by_ptype','2020-09-07 15:11:39'),('user_barcode_index','2024-01-05 09:20:52'),('user_browse_add_home','2022-12-09 21:56:32'),('user_cache_checkouts','2021-03-02 21:09:02'),('user_cache_holds','2021-03-02 17:55:07'),('user_checkout_cache_additional_fields','2021-03-19 14:15:56'),('user_checkout_cache_renewal_information','2021-03-19 14:16:23'),('user_circulation_cache_callnumber_length','2021-05-03 20:49:18'),('user_circulation_cache_cover_link','2021-03-29 20:48:56'),('user_circulation_cache_grouped_work','2021-03-19 14:20:46'),('user_circulation_cache_indexes','2021-03-23 16:36:54'),('user_circulation_cache_overdrive_magazines','2021-03-24 17:23:25'),('user_circulation_cache_overdrive_supplemental_materials','2021-03-26 19:02:34'),('user_cookie_preference_analytics','2024-01-05 09:20:51'),('user_cookie_preference_essential','2024-01-05 09:20:51'),('user_disableAccountLinking','2022-11-18 14:44:26'),('user_display_name','2019-01-28 20:58:56'),('user_display_name_length','2019-12-11 21:42:32'),('user_events_entry','2023-04-04 23:06:13'),('user_events_entry_length','2023-04-14 16:27:42'),('user_events_entry_location_length','2023-04-19 21:50:09'),('user_events_entry_unique','2023-04-15 21:06:25'),('user_events_registrations','2023-05-03 22:54:39'),('user_hideResearchStarters','2022-03-20 19:04:14'),('user_hold_format','2021-03-26 19:02:34'),('user_hoopla_confirmation_checkout','2019-01-28 20:58:56'),('user_hoopla_confirmation_checkout_prompt','2019-11-18 17:53:43'),('user_hoopla_confirmation_checkout_prompt2','2022-03-20 19:04:14'),('user_ilsType','2019-01-28 20:58:56'),('user_languages','2019-11-18 17:53:44'),('user_last_list_used','2020-06-10 12:22:31'),('user_last_login_validation','2020-06-19 20:20:57'),('user_last_name_length','2020-03-05 22:54:04'),('user_linking','2019-01-28 20:58:56'),('user_linking_1','2019-01-28 20:58:56'),('user_linking_disable_link','2019-11-18 17:53:43'),('user_link_blocking','2019-01-28 20:58:56'),('user_list_course_reserves','2021-10-15 23:06:03'),('user_list_entry','2019-01-28 20:59:02'),('user_list_entry_add_additional_types','2020-05-18 18:16:05'),('user_list_entry_length','2023-03-27 09:11:11'),('user_list_force_reindex_20_18','2021-01-03 21:18:50'),('user_list_import_information','2021-05-03 20:49:18'),('user_list_indexing','2019-01-28 20:59:02'),('user_list_indexing_log','2020-09-09 15:44:06'),('user_list_indexing_settings','2020-09-09 18:40:16'),('user_list_searching','2020-09-09 18:05:20'),('user_list_sorting','2019-01-28 20:59:02'),('user_locked_filters','2019-11-18 17:53:45'),('user_messages','2019-11-18 17:53:44'),('user_message_actions','2019-11-18 17:53:45'),('user_message_addendum','2022-12-01 02:32:10'),('user_overdrive_auto_checkout','2019-11-18 17:53:45'),('user_overdrive_email','2019-01-28 20:58:56'),('user_password_length','2020-07-08 14:56:03'),('user_payments','2019-11-18 17:53:45'),('user_payments_cancelled','2021-07-11 21:04:57'),('user_payments_carlx','2021-02-06 21:31:44'),('user_payments_finesPaid','2021-02-06 21:31:44'),('user_payment_lines','2024-03-25 16:02:14'),('user_permissions','2020-09-03 17:44:19'),('user_permission_defaults','2020-09-03 17:44:20'),('user_phone','2019-01-28 20:58:56'),('user_phone_length','2019-11-18 17:53:43'),('user_preference_review_prompt','2019-01-28 20:58:56'),('user_preferred_library_interface','2019-01-28 20:58:56'),('user_reading_history_dates_in_past','2021-04-20 23:30:12'),('user_reading_history_index','2020-09-16 23:41:26'),('user_reading_history_index_source_id','2019-01-28 20:58:56'),('user_reading_history_work_index','2020-09-23 22:36:33'),('user_rememberHoldPickupLocation','2019-11-18 17:53:44'),('user_remove_college_major','2021-02-12 20:52:09'),('user_remove_default_created','2019-11-18 17:53:43'),('user_review_imported_from','2021-05-03 20:49:19'),('user_role_uniqueness','2022-03-20 19:04:14'),('user_secondary_library_card','2020-06-19 20:20:58'),('user_token_onboard_notifications','2024-01-05 09:20:36'),('user_track_reading_history','2019-01-28 20:58:56'),('user_update_messages','2020-07-29 17:40:19'),('user_username_increase_length','2021-03-29 20:48:55'),('use_library_themes_for_location','2023-04-15 21:06:25'),('usps_settings','2024-03-25 16:02:13'),('utf8mb4support','2021-09-30 19:35:59'),('utf8_update','2016-06-30 17:11:12'),('variables_full_index_warnings','2019-01-28 20:58:59'),('variables_lastHooplaExport','2019-01-28 20:58:57'),('variables_lastRbdigitalExport','2019-03-05 05:46:15'),('variables_offline_mode_when_offline_login_allowed','2019-01-28 20:58:59'),('variables_table','2019-01-28 20:58:59'),('variables_table_uniqueness','2019-01-28 20:58:59'),('variables_validateChecksumsFromDisk','2019-01-28 20:58:59'),('vdx_forms','2022-08-17 22:43:44'),('vdx_form_updates_locations','2022-08-29 14:08:08'),('vdx_hold_groups','2022-08-17 22:43:44'),('vdx_requests','2022-08-17 22:43:44'),('vdx_requests_2','2022-08-17 22:43:44'),('vdx_request_id','2022-08-22 18:57:13'),('vdx_settings','2022-08-17 22:43:44'),('vdx_setting_updates','2022-08-22 18:57:13'),('view_unpublished_content_permissions','2020-09-27 22:33:11'),('volume_display_order','2020-04-30 14:33:48'),('volume_increase_display_order','2020-12-04 17:08:22'),('volume_increase_field_lengths','2020-12-04 17:08:23'),('volume_information','2019-01-28 20:58:57'),('webpage_default_image','2024-01-05 09:20:37'),('website_crawlDelay','2022-05-02 19:45:05'),('website_facets','2024-01-05 09:20:47'),('website_facets_default','2024-01-05 09:20:47'),('website_indexing_tables','2019-11-18 17:53:55'),('website_index_log_num_invalid_pages','2023-01-04 19:15:06'),('website_pages_deletionReason','2021-12-17 21:36:10'),('website_record_usage','2019-11-18 17:53:55'),('website_usage_add_instance','2020-12-21 14:48:22'),('web_builder_add_cell_imageURL','2021-05-03 20:49:19'),('web_builder_add_cell_makeCellAccordion','2021-04-22 01:34:04'),('web_builder_add_frameHeight','2021-04-20 23:30:12'),('web_builder_add_settings','2021-02-12 01:49:54'),('web_builder_basic_pages','2020-07-22 12:49:58'),('web_builder_basic_page_teaser','2020-07-22 12:49:58'),('web_builder_categories_and_audiences','2020-07-22 12:50:01'),('web_builder_custom_forms','2020-07-22 12:50:01'),('web_builder_custom_from_submission_isRead','2021-03-31 13:24:43'),('web_builder_custom_page_categories','2020-12-04 17:08:23'),('web_builder_image_upload','2020-07-22 12:49:59'),('web_builder_image_upload_additional_sizes','2020-07-22 12:49:59'),('web_builder_last_update_timestamps','2020-07-22 12:50:00'),('web_builder_menu','2020-07-22 12:49:58'),('web_builder_menu_show_when','2020-07-22 12:49:59'),('web_builder_menu_sorting','2020-07-22 12:49:58'),('web_builder_module','2020-07-22 12:49:58'),('web_builder_module_monitoring_and_indexing','2020-11-09 19:22:45'),('web_builder_portal','2020-07-22 12:49:59'),('web_builder_portal_cell_markdown','2020-07-22 12:50:01'),('web_builder_portal_cell_source_info','2020-07-22 12:50:01'),('web_builder_portal_cell_title','2020-10-27 17:06:36'),('web_builder_portal_weights','2020-07-22 12:49:59'),('web_builder_quick_polls','2024-01-05 09:20:42'),('web_builder_remove_show_sidebar','2020-10-27 17:06:37'),('web_builder_resources','2020-07-22 12:50:00'),('web_builder_resource_in_library','2020-07-22 12:50:01'),('web_builder_resource_open_in_new_tab','2021-01-03 21:18:50'),('web_builder_resource_teaser','2020-07-22 12:50:00'),('web_builder_roles','2020-10-27 17:06:36'),('web_builder_scope_by_library','2020-07-22 12:50:00'),('web_indexer_add_description_expression','2020-08-07 14:36:05'),('web_indexer_add_paths_to_exclude','2019-12-03 14:45:40'),('web_indexer_add_title_expression','2020-08-07 14:36:05'),('web_indexer_deleted_settings','2020-12-04 17:08:23'),('web_indexer_max_pages_to_index','2021-02-12 01:49:54'),('web_indexer_module_add_log','2020-03-31 18:45:02'),('web_indexer_scoping','2020-12-14 17:03:19'),('web_indexer_url_length','2021-05-18 13:12:51'),('web_resource_usage','2022-01-05 16:27:08'),('work_level_ratings','2019-01-28 20:59:02'),('work_level_tagging','2019-01-28 20:59:02'),('worldpay_settings','2021-07-12 16:44:30'),('worldpay_setting_typo','2021-07-14 12:31:50'),('xpressPay_settings','2022-04-08 21:00:43'); +INSERT INTO `db_update` VALUES ('21_07_00_full_extract_for_koha','2021-05-29 17:13:17'),('2fa_permissions','2022-01-05 21:15:07'),('accelerated_reader','2019-11-18 17:53:46'),('accessibleBrowseCategories','2024-06-25 15:05:22'),('account_linking_setting_by_ptype','2022-12-28 00:13:51'),('account_link_remove_setting_by_ptype','2023-02-13 14:56:53'),('account_profiles_1','2019-01-28 20:59:02'),('account_profiles_2','2019-11-18 17:53:57'),('account_profiles_3','2019-11-18 17:53:57'),('account_profiles_4','2019-11-18 17:53:57'),('account_profiles_5','2019-11-18 17:53:58'),('account_profiles_admin_login_configuration','2021-02-12 22:47:29'),('account_profiles_api_version','2020-11-16 18:34:53'),('account_profiles_domain','2021-04-08 13:50:39'),('account_profiles_ils','2020-01-03 19:47:11'),('account_profiles_oauth','2019-11-18 17:53:58'),('account_profiles_staff_information','2021-03-26 19:02:34'),('account_profiles_workstation_id','2021-04-08 13:50:39'),('account_profile_carlx_database_view_version','2024-03-25 16:02:12'),('account_profile_increaseDatabaseNameLength','2021-11-16 04:58:47'),('account_profile_libraryForRecordingPayments','2021-11-16 05:33:08'),('account_profile_oauth_client_secret_length','2022-07-14 23:19:46'),('account_profile_overrideCode','2023-05-09 15:54:09'),('account_summary_hasUpdatedSavedSearches','2022-07-27 17:23:29'),('aci_speedpay_sdk_config','2022-10-06 14:57:01'),('aci_speedpay_settings','2022-08-30 22:03:33'),('acsLog','2011-12-13 16:04:23'),('addContactEmail','2021-10-27 14:04:27'),('addDefaultCatPassword','2021-09-15 04:46:04'),('addGeolocation','2021-09-01 18:32:47'),('addGreenhouseUrl','2021-08-25 20:21:34'),('additionalTranslationTermInfo','2021-08-25 16:40:52'),('additional_administration_locations','2024-10-15 18:40:04'),('additional_index_logging','2021-07-21 22:25:50'),('additional_library_contact_links','2019-01-28 20:58:56'),('additional_locations_for_availability','2019-01-28 20:58:56'),('addLastSeenToOverDriveProducts','2021-10-25 23:25:05'),('addNewSystemBrowseCategories','2021-11-19 22:02:06'),('addNumDismissedToBrowseCategory','2021-11-19 22:02:06'),('addRecommendedForYou','2022-06-07 19:15:33'),('addReleaseChannelToCachedGreenhouseData','2021-09-22 16:15:42'),('addSettingIdToAxis360Scopes','2020-08-10 13:04:25'),('addSiteIdToCachedGreenhouseData','2021-09-09 00:04:51'),('addTablelistWidgetListsLinks','2019-01-28 20:59:01'),('addThemeToCachedGreenhouseData','2021-10-07 22:56:12'),('addUseLineItems_FISWorldPay','2022-04-20 00:46:29'),('addVersionToCachedGreenhouseData','2022-02-27 18:40:30'),('addWeightToDonationValue','2022-06-07 19:15:33'),('add_account_alerts_notification','2022-12-09 21:56:32'),('add_account_alerts_notification_settings','2022-12-29 21:45:01'),('add_account_display_options','2022-10-06 14:57:02'),('add_account_profile_library_settings','2023-02-09 16:36:13'),('add_aci_token_payment','2022-08-30 22:03:33'),('add_additional_control_over_format_mapping','2024-06-25 15:05:21'),('add_additional_control_over_format_mapping_part2','2024-06-25 15:05:21'),('add_additional_format_pickup_options','2022-08-29 14:08:08'),('add_additional_info_to_palace_project_availability','2024-10-15 18:40:03'),('add_additional_library_sso_config_options','2022-10-17 14:54:48'),('add_address_information_for_donations','2024-03-25 16:02:14'),('add_administer_selected_browse_category_groups','2023-05-18 21:13:21'),('add_always_display_renew_count','2024-01-05 09:20:49'),('add_analytics_data_cleared_flag','2024-10-15 18:40:05'),('add_app_scheme_system_variables','2023-01-30 23:46:02'),('add_aspen_lida_build_tracker','2023-01-18 15:01:51'),('add_aspen_lida_general_settings_table','2023-02-22 20:48:38'),('add_aspen_site_scheduled_update','2023-04-27 14:11:42'),('add_barcode_last_name_login_option','2024-01-05 09:20:35'),('add_batchDeletePermissions','2022-10-06 14:57:02'),('add_blank_tempalte_to_grapes_templates','2024-10-15 18:40:03'),('add_book_cover_display_control_in_library_settings','2024-06-25 15:05:20'),('add_branded_app_name','2023-04-12 15:45:12'),('add_branded_app_privacy_policy_contact','2024-03-25 16:02:13'),('add_browseLinkText_to_layout_settings','2021-04-20 23:30:13'),('add_build_tracker_slack_alert','2023-01-18 15:01:51'),('add_bypass_aspen_login_page','2023-01-30 23:46:02'),('add_bypass_patron_login','2023-04-27 14:11:42'),('add_childRecords_more_details_section','2022-10-06 14:57:01'),('add_child_title_to_record_parents','2022-10-06 14:57:01'),('add_colors_to_web_builder','2021-07-29 03:16:23'),('add_companion_system','2024-01-05 09:20:48'),('add_configuration_for_index_deletions','2024-10-15 18:40:03'),('add_continuedByRecords_more_details_section','2023-02-22 22:48:38'),('add_continuesRecords_more_details_section','2023-02-22 22:48:38'),('add_cookie_consent_theming','2024-01-05 09:20:39'),('add_coverStyle','2022-10-06 14:57:02'),('add_ctaDeepLinkOptions','2022-10-06 14:57:02'),('add_defaultContent_field','2024-10-15 18:40:04'),('add_default_system_variables','2022-06-14 15:50:20'),('add_deluxe_remittance_id','2023-03-29 08:00:32'),('add_deluxe_security_id','2023-03-29 08:00:32'),('add_device_notification_tokens','2022-08-22 18:57:13'),('add_disallow_third_party_covers','2024-01-05 09:20:35'),('add_displayHoldsOnCheckout','2022-07-21 16:21:03'),('add_displayItemBarcode','2021-08-23 18:45:43'),('add_display_name_to_themes','2023-03-16 21:38:26'),('add_donateToLibrary','2023-03-02 22:15:39'),('add_donationEarmark','2023-03-02 22:15:39'),('add_donation_notification_fields','2023-03-12 18:08:35'),('add_ecommerce_deluxe','2023-03-27 09:11:11'),('add_ecommerce_options','2024-01-05 09:20:37'),('add_ecommerce_payflow_settings','2023-05-05 21:42:54'),('add_ecommerce_square_settings','2024-01-05 09:20:35'),('add_ecommerce_stripe_settings','2024-01-05 09:20:58'),('add_enableSelfRegistration_LiDA','2024-10-15 18:40:04'),('add_enable_branded_app_settings','2024-01-05 09:20:56'),('add_enable_reading_history_to_ptype','2023-01-25 16:28:18'),('add_error_to_user_payments','2021-07-26 21:59:49'),('add_expo_eas_build_webhook_key','2023-01-18 15:01:51'),('add_expo_eas_submit_webhook_key','2023-01-26 21:52:44'),('add_failed_login_attempt_logging','2024-01-05 09:20:36'),('add_fallback_sso_mapping','2023-02-09 17:11:58'),('add_footerLogoAlt','2021-07-21 22:25:51'),('add_force_reauth_sso','2024-01-05 09:20:36'),('add_forgot_barcode','2024-01-05 09:20:48'),('add_fullWidthTheme','2022-10-06 14:57:02'),('add_greenhouse_id_scheduled_update','2023-05-01 16:41:04'),('add_high_contrast_checkbox','2023-04-04 21:52:01'),('add_holdings_more_details_section','2022-10-06 14:57:01'),('add_hold_not_needed_for_materials_request_statuses','2024-10-15 18:40:04'),('add_hold_options_for_materials_request_statuses','2024-10-15 18:40:04'),('add_hold_pending_cancellation','2024-01-05 09:20:37'),('add_iiiLoginConfiguration','2023-03-10 17:01:05'),('add_ill_itype','2024-01-05 09:20:40'),('add_ilsNotificationSettingId','2024-10-15 18:40:03'),('add_ils_message_type','2024-10-15 18:40:03'),('add_ils_notification_settings','2024-10-15 18:40:03'),('add_image_to_ebscohost_database','2022-06-24 19:23:34'),('add_imgOptions','2022-10-06 14:57:02'),('add_indexes','2019-01-28 20:59:01'),('add_indexes2','2019-01-28 20:59:01'),('add_index_to_ils_volume_info','2023-01-04 16:14:30'),('add_invoiceCloud','2022-12-12 23:54:16'),('add_invoiceCloudSettingId_to_library','2023-01-13 00:56:35'),('add_isssologin_user','2023-02-02 16:09:44'),('add_isSubmitted_build_tracker','2023-01-26 21:52:44'),('add_is_virtual_info_to_items','2023-02-24 23:09:30'),('add_lastUpdated_search','2022-09-01 22:58:26'),('add_last_check_in_community_for_translations','2023-04-03 23:27:50'),('add_ldap_label','2023-02-09 16:36:13'),('add_ldap_to_sso','2023-02-09 16:36:13'),('add_library_links_access','2021-08-23 18:45:43'),('add_library_sso_config_options','2022-09-01 12:58:39'),('add_lida_event_reg_body','2024-03-25 16:02:15'),('add_lida_system_messages_options','2024-01-05 09:20:49'),('add_local_analytics_column_to_user','2024-10-15 18:40:05'),('add_location_circulation_username','2024-10-15 18:40:03'),('add_location_image','2024-01-05 09:20:57'),('add_location_stat_group','2024-10-15 18:40:03'),('add_logoNotification','2022-09-01 22:57:12'),('add_makeAccordion_to_portalRow','2021-04-20 23:30:14'),('add_masquerade_switch_to_ip_addresses','2024-01-05 09:20:36'),('add_materials_requests_limit_by_ptype','2023-02-22 21:22:19'),('add_materials_request_format_mapping','2024-10-15 18:40:04'),('add_maxDaysToFreeze','2021-08-23 18:45:42'),('add_moveSearchTools','2022-10-06 14:57:02'),('add_notifyCustom','2022-10-06 14:57:02'),('add_number_of_days_to_index_to_event_indexers','2024-01-05 09:20:39'),('add_numInvalidRecords_to_indexing_logs','2022-11-02 02:59:14'),('add_numInvalidRecords_to_sideload_logs','2022-11-02 23:03:57'),('add_oauth_gateway_options','2022-10-06 14:57:02'),('add_oauth_grant_type','2022-11-16 23:21:46'),('add_oauth_logout','2022-11-16 23:21:46'),('add_oauth_mapping','2022-10-06 14:57:02'),('add_oauth_private_keys','2022-11-16 23:21:46'),('add_oauth_to_user','2022-11-16 23:21:46'),('add_openarchives_dateformatting_field','2024-10-15 18:40:05'),('add_opt_out_batch_updates','2023-04-27 14:11:42'),('add_parentRecords_more_details_section','2022-10-06 14:57:01'),('add_parent_child_info_to_records','2023-02-22 22:48:38'),('add_permission_for_format_sorting','2024-10-15 18:40:03'),('add_permission_for_testing_checkouts','2024-10-15 18:40:03'),('add_place_holds_for_materials_request_permission','2024-10-15 18:40:04'),('add_place_of_publication_to_grouped_work','2024-03-25 16:02:14'),('add_pushToken_user_notifications','2022-08-22 18:57:13'),('add_records_to_delete_for_sideloads','2021-07-21 22:25:51'),('add_referencecover_groupedwork','2021-04-08 13:50:51'),('add_requestingUrl_payment','2023-01-05 02:46:02'),('add_requireLogin_to_basic_page','2021-08-23 18:45:42'),('add_requireLogin_to_portal_page','2021-08-23 18:45:42'),('add_restrict_sso_ip','2024-01-05 09:20:48'),('add_saml_options_to_sso_settings','2023-01-25 16:28:19'),('add_search_source_to_saved_searches','2019-01-28 20:59:02'),('add_search_url_to_saved_searches','2019-11-18 17:53:58'),('add_selected_users_to_browse_category_groups','2023-05-18 21:13:21'),('add_self_check_barcode_styles','2024-01-05 09:20:51'),('add_send_emails_new_materials_request','2023-02-22 21:22:19'),('add_settings_axis360_exportLog','2020-08-21 19:41:22'),('add_settings_cloud_library_exportLog','2021-01-14 20:15:09'),('add_shared_session_table','2024-01-05 09:20:57'),('add_showBookIcon_to_layout_settings','2021-04-08 13:50:52'),('add_show_edition_covers','2023-05-18 21:13:21'),('add_show_link_on','2024-01-05 09:20:57'),('add_sms_indicator_to_phone','2019-01-28 20:58:56'),('add_sorts_for_browsable_objects','2021-08-23 18:45:42'),('add_sort_info_to_ebscohost_database','2022-06-27 21:34:25'),('add_sp_logout_url','2023-02-02 16:09:44'),('add_sso_account_profiles','2023-02-09 17:11:58'),('add_sso_aspen_lida_module','2023-02-02 16:09:43'),('add_sso_auth_only','2023-02-09 17:11:58'),('add_sso_mapping_constraints','2023-03-10 17:01:05'),('add_sso_permissions','2022-10-06 14:57:02'),('add_sso_saml_student_attributes','2023-05-15 21:35:29'),('add_sso_settings_account_profile','2023-02-09 17:11:58'),('add_sso_table','2022-10-06 14:57:02'),('add_sso_unique_field_match','2023-02-22 22:48:38'),('add_sso_updateAccount','2024-01-05 09:20:57'),('add_sso_user_options','2023-02-01 16:32:50'),('add_staffonly_to_sso_settings','2023-01-25 16:28:19'),('add_staff_ptypes_to_sso_settings','2023-01-25 16:28:19'),('add_staff_ptype_to_sso_settings','2023-01-25 16:28:18'),('add_staff_settings_to_user','2023-02-22 21:22:19'),('add_supporting_company_system_variables','2024-01-05 09:20:38'),('add_switch_for_grapes_editor','2024-10-15 18:40:03'),('add_tab_coloring_theme','2023-04-27 14:11:42'),('add_theme_header_image','2022-10-06 14:57:03'),('add_titles_to_user_list_entry','2021-06-01 20:27:56'),('add_title_user_list_entry','2021-06-01 20:27:55'),('add_useHomeLink_to_layout_settings','2021-04-08 13:50:51'),('add_userAlertPreferences','2022-10-06 14:57:02'),('add_user_brightness_permission','2024-01-05 09:20:57'),('add_user_ils_messages','2024-10-15 18:40:03'),('add_user_not_interested_index','2022-08-29 14:08:08'),('add_use_alternate_library_card_setting_for_cloud_library','2024-10-15 18:40:03'),('add_web_builder_basic_page_access','2021-08-23 18:45:42'),('add_web_builder_portal_page_access','2021-08-23 18:45:42'),('add_work_level_rating_index','2021-02-24 23:04:51'),('add_worldpay_settings','2022-04-08 21:00:43'),('administer_host_permissions','2020-10-27 17:06:20'),('administer_replacement_costs_permission','2024-10-15 18:40:04'),('admin_field_locking','2024-01-05 09:20:43'),('allowCancellingAvailableHolds','2024-01-05 09:20:49'),('allowChangingPickupLocationForAvailableHolds','2024-01-05 09:20:49'),('allow_anyone_to_view_documentation','2020-09-29 21:40:15'),('allow_decimal_series_display_orders','2023-03-02 22:15:39'),('allow_ip_tracking_to_be_disabled','2023-03-29 09:29:06'),('allow_long_scheduled_update_notes','2023-05-04 22:56:50'),('allow_masquerade_mode','2019-01-28 20:58:56'),('allow_masquerade_with_username','2024-06-25 15:05:20'),('allow_multiple_themes_for_libraries','2023-03-15 23:02:54'),('allow_multiple_themes_for_locations','2023-03-16 18:03:48'),('allow_reading_history_display_in_masquerade_mode','2019-01-28 20:58:56'),('allow_users_to_change_themes','2023-03-16 22:29:28'),('alpha_browse_setup_2','2019-01-28 20:58:59'),('alpha_browse_setup_3','2019-01-28 20:58:59'),('alpha_browse_setup_4','2019-01-28 20:58:59'),('alpha_browse_setup_5','2019-01-28 20:58:59'),('alpha_browse_setup_6','2019-01-28 20:59:00'),('alpha_browse_setup_7','2019-01-28 20:59:00'),('alpha_browse_setup_8','2019-01-28 20:59:00'),('alpha_browse_setup_9','2019-01-28 20:59:01'),('alternate_grouping_category','2024-06-25 15:05:20'),('alternate_library_card_form_message','2024-10-15 18:40:03'),('alter_summonId_length','2024-10-15 18:40:03'),('alwaysFlagNewTitlesInSearchResults','2022-08-04 04:14:02'),('always_show_search_results_Main_details','2019-01-28 20:58:56'),('amazon_ses','2021-05-27 16:14:10'),('amazon_ses_secret_length','2022-01-05 16:27:08'),('analytics','2019-01-28 20:59:01'),('analytics_1','2019-01-28 20:59:01'),('analytics_2','2019-01-28 20:59:01'),('analytics_3','2019-01-28 20:59:01'),('analytics_4','2019-01-28 20:59:01'),('analytics_5','2019-01-28 20:59:02'),('analytics_6','2019-01-28 20:59:02'),('analytics_7','2019-01-28 20:59:02'),('analytics_8','2019-01-28 20:59:02'),('api_usage_stats','2021-03-19 14:13:57'),('appReleaseChannel','2021-09-22 16:15:41'),('archivesRole','2019-01-28 20:58:59'),('archive_collection_default_view_mode','2019-01-28 20:58:56'),('archive_filtering','2019-01-28 20:58:56'),('archive_more_details_customization','2019-01-28 20:58:56'),('archive_object_filtering','2019-01-28 20:58:56'),('archive_private_collections','2019-01-28 20:59:02'),('archive_requests','2019-01-28 20:59:02'),('archive_subjects','2019-01-28 20:59:02'),('ar_update_frequency','2022-04-08 21:00:43'),('aspenSite_activeTicketFeed','2022-03-31 21:48:47'),('aspenSite_activeTicketFeed2','2022-04-01 18:27:04'),('aspen_lida_permissions_update','2024-01-05 09:20:37'),('aspen_lida_self_check_settings','2024-01-05 09:20:37'),('aspen_lida_settings','2022-02-01 15:31:47'),('aspen_lida_settings_2','2022-02-01 15:31:48'),('aspen_lida_settings_3','2022-02-01 15:31:48'),('aspen_release_test_release_date','2022-11-18 15:06:55'),('aspen_sites','2021-07-30 02:19:22'),('aspen_site_internal_name','2021-08-23 18:45:42'),('aspen_site_isOnline','2022-08-04 04:14:02'),('aspen_site_lastOfflineTime','2022-07-21 16:21:03'),('aspen_site_lastOfflineTracking','2022-08-04 04:14:02'),('aspen_site_monitored','2023-01-31 15:40:34'),('aspen_site_timezone','2022-06-08 13:25:56'),('aspen_usage','2019-11-18 17:53:58'),('aspen_usage_add_sessions','2020-12-17 20:24:00'),('aspen_usage_blocked_requests','2020-06-10 12:22:32'),('aspen_usage_ebscohost','2022-06-24 13:38:50'),('aspen_usage_ebsco_eds','2020-07-21 13:33:42'),('aspen_usage_events','2020-04-30 14:33:56'),('aspen_usage_instance','2020-12-15 19:27:15'),('aspen_usage_remove_slow_pages','2020-12-17 20:05:20'),('aspen_usage_summon','2024-03-25 16:02:11'),('aspen_usage_websites','2019-11-18 17:53:58'),('assabet_events','2024-06-25 15:05:20'),('assabet_settings','2024-06-25 15:05:20'),('assign_novelist_settings_to_libraries','2023-03-10 22:28:15'),('authentication_profiles','2019-01-28 20:59:02'),('authorities','2019-11-18 17:53:46'),('author_authorities','2021-01-27 20:56:59'),('author_authorities_index','2022-12-07 16:40:30'),('author_authorities_normalized_values','2021-02-01 15:27:43'),('author_enrichment','2019-01-28 20:58:59'),('automatic_update_settings','2024-01-05 09:20:34'),('autoPickUserHomeLocation','2024-06-25 15:05:22'),('availability_toggle_customization','2019-01-28 20:58:56'),('axis360AddSettings','2021-02-12 01:49:54'),('axis360Title','2020-08-08 20:50:11'),('axis360_add_response_info_to_availability','2020-08-20 15:56:32'),('axis360_add_setting_to_availability','2020-08-08 21:00:00'),('axis360_availability_indexes','2021-05-12 22:50:28'),('axis360_availability_remove_unused_fields','2020-08-21 19:41:21'),('axis360_availability_update_for_new_method','2020-09-24 02:26:32'),('axis360_exportLog','2020-08-07 14:36:05'),('axis360_exportLog_num_skipped','2020-08-21 20:35:41'),('axis360_restrict_scopes_by_audience','2024-04-11 17:23:35'),('axis360_stats_index','2021-02-06 21:31:45'),('axis_360_options','2022-07-03 20:04:14'),('barcode_generator_report_permissions','2024-10-15 18:40:04'),('basic_page_allow_access_by_home_location','2022-10-06 14:57:01'),('bookcover_info','2019-11-18 17:53:58'),('book_store','2019-01-28 20:59:01'),('book_store_1','2019-01-28 20:59:01'),('boost_disabling','2019-01-28 20:59:01'),('browsable_course_reserves','2021-11-30 16:30:45'),('browseCategoryDismissal','2021-11-18 04:45:20'),('browse_categories','2019-01-28 20:59:02'),('browse_categories_add_startDate_endDate','2021-05-26 16:19:08'),('browse_categories_lists','2019-01-28 20:59:02'),('browse_categories_search_term_and_stats','2019-01-28 20:59:02'),('browse_categories_search_term_length','2019-01-28 20:59:02'),('browse_category_default_view_mode','2019-01-28 20:58:56'),('browse_category_groups','2020-01-08 18:34:34'),('browse_category_library_updates','2020-08-31 17:13:32'),('browse_category_ratings_mode','2019-01-28 20:58:56'),('browse_category_source','2020-06-10 12:22:31'),('browse_category_times_shown','2022-03-20 19:04:15'),('bypass_event_pages','2024-01-05 09:20:38'),('cached_values_engine','2022-02-21 19:09:04'),('cached_value_case_sensitive','2020-03-05 22:53:47'),('cacheGreenhouseData','2021-09-08 23:42:15'),('callNumberPrestamp2','2024-01-05 09:20:48'),('card_renewal_options','2024-01-05 09:20:56'),('carlx_tos','2024-10-15 18:40:03'),('catalogingRole','2019-01-28 20:58:59'),('catalogStatus','2022-03-20 19:04:14'),('changeBrowseCategoryIdType','2021-11-30 16:30:44'),('change_default_formatSource_KohaOnly','2022-08-29 14:08:08'),('change_ecommerceTerms_to_mediumText','2024-01-05 09:20:39'),('change_greenhouse_url','2023-01-09 23:09:10'),('change_to_innodb','2019-03-05 18:07:51'),('checkoutFormatLength','2021-11-16 04:58:47'),('checkoutIsILL','2024-01-05 09:20:40'),('check_titles_in_user_list_entries','2021-08-23 18:45:43'),('claim_authorship_requests','2019-01-28 20:59:02'),('cleanupApiUsage_func','2022-10-06 14:57:02'),('cleanup_invalid_reading_history_entries','2021-01-14 16:33:48'),('clean_up_invalid_instances','2022-09-11 03:22:11'),('clear_analytics','2019-01-28 20:59:02'),('clear_default_covers_22_06_04','2022-06-14 21:28:49'),('closed_captioning_in_records','2022-06-28 23:13:37'),('cloud_library_add_scope_setting_id','2021-01-14 16:34:36'),('cloud_library_add_settings','2021-02-12 01:49:54'),('cloud_library_add_setting_to_availability','2021-01-14 20:16:54'),('cloud_library_availability','2019-11-18 17:53:55'),('cloud_library_availability_changes','2024-03-25 16:02:13'),('cloud_library_cleanup_availability_with_settings','2021-05-03 20:49:19'),('cloud_library_exportLog','2019-11-18 17:53:55'),('cloud_library_exportTable','2019-11-18 17:53:55'),('cloud_library_increase_allowable_copies','2020-04-30 14:33:55'),('cloud_library_module_add_log','2020-03-31 18:45:02'),('cloud_library_multiple_scopes','2021-05-18 13:12:51'),('cloud_library_restrict_scopes_by_audience','2024-04-11 17:23:35'),('cloud_library_scoping','2019-11-18 17:53:55'),('cloud_library_settings','2019-11-18 17:53:55'),('cloud_library_target_audience','2024-03-25 16:02:13'),('cloud_library_usage_add_instance','2020-12-21 17:24:10'),('coce_settings','2020-08-24 14:05:19'),('collapse_facets','2019-01-28 20:58:55'),('collection_report_permissions','2024-01-05 09:20:36'),('collection_spotlights_carousel_style','2020-10-26 18:02:00'),('combined_results','2019-01-28 20:58:56'),('communico_events','2023-03-15 23:02:46'),('communico_full_index','2024-03-26 16:08:04'),('communico_settings','2023-03-15 23:02:46'),('compress_hoopla_fields','2021-07-12 16:44:23'),('compress_novelist_fields','2021-07-11 21:04:57'),('compress_overdrive_fields','2021-07-12 16:44:29'),('comprise_link_to_library','2021-07-06 15:52:36'),('comprise_settings','2021-06-27 17:52:03'),('configurable_solr_timeouts','2022-02-21 19:09:05'),('contentcafe_settings','2020-01-03 19:47:26'),('contentEditor','2019-01-28 20:58:59'),('content_cafe_disable','2022-12-07 16:40:30'),('convertOldEContent','2011-11-06 22:58:31'),('convert_to_format_status_maps','2019-11-18 17:53:46'),('cookie_policy_html','2024-01-05 09:20:36'),('cookie_storage_consent','2024-01-05 09:20:36'),('course_reserves_indexing','2021-11-30 16:30:45'),('course_reserves_library_mappings','2021-12-31 21:05:12'),('course_reserves_module','2021-11-30 16:30:45'),('course_reserves_permissions','2021-11-30 16:30:45'),('course_reserves_unique_index','2022-02-21 19:09:04'),('coverArt_suppress','2019-01-28 20:58:58'),('createAxis360Module','2020-08-07 14:36:04'),('createAxis360SettingsAndScopes','2020-08-07 14:36:04'),('createEbscoModules','2020-07-14 14:14:44'),('createMaterialRequestStats','2022-05-26 19:43:21'),('createPalaceProjectModule','2024-01-05 09:20:52'),('createPalaceProjectSettingsAndScopes','2024-01-05 09:20:52'),('createPermissionsforEBSCOhost','2022-05-26 19:42:54'),('createSearchInterface_libraries_locations','2021-07-14 20:52:48'),('createSettingsForEbscoEDS','2020-07-14 14:14:45'),('createSettingsforEBSCOhost','2022-05-26 19:42:54'),('createSettingsForSummon','2024-03-25 16:02:11'),('createSummonModule','2024-03-25 16:02:11'),('create_cloud_library_module','2019-11-18 17:53:55'),('create_community_content_url','2023-03-31 09:54:49'),('create_default_format_sorting','2024-10-15 18:40:04'),('create_events_module','2020-04-30 14:33:55'),('create_field_encryption_file','2021-02-12 02:31:03'),('create_format_sorting_tables','2024-10-15 18:40:04'),('create_hoopla_module','2019-11-18 17:53:49'),('create_ils_modules','2019-11-18 17:53:47'),('create_lida_notifications','2022-10-06 14:57:02'),('create_nyt_update_log','2021-03-29 20:48:56'),('create_open_archives_module','2019-11-18 17:53:55'),('create_overdrive_module','2019-11-18 17:53:48'),('create_overdrive_scopes','2019-12-18 18:48:34'),('create_plural_grouped_work_facets','2021-07-06 15:52:37'),('create_polaris_module','2021-03-05 20:16:16'),('create_rbdigital_module','2019-11-18 17:53:49'),('create_system_variables_table','2020-04-30 14:33:56'),('create_user_notifications','2022-08-22 18:57:13'),('create_user_notification_tokens','2022-08-22 18:57:13'),('create_web_indexer_module','2019-11-18 17:53:56'),('cronLog','2019-01-28 20:59:01'),('cron_log_errors','2020-04-07 12:24:03'),('cron_process_skips','2020-04-07 12:24:04'),('curbside_pickup_settings','2021-12-17 23:34:16'),('curbside_pickup_settings_pt2','2021-12-17 23:34:16'),('curbside_pickup_settings_pt3','2021-12-17 23:34:16'),('curbside_pickup_settings_pt4','2021-12-27 20:32:54'),('currencyCode','2020-11-02 16:19:32'),('custom_facets','2024-01-05 09:20:37'),('custom_form_includeIntroductoryTextInEmail','2022-11-08 15:28:53'),('custom_marc_fields_to_index_as_keyword','2022-07-07 15:23:41'),('debug_info_update','2024-10-15 18:40:04'),('defaultAvailabilityToggle','2020-03-05 22:53:47'),('defaultGroupedWorkDisplaySettings','2020-05-14 19:25:08'),('defaultSelfRegistrationEmailTemplate','2024-01-05 09:20:50'),('default_library','2019-01-28 20:58:56'),('default_list_indexing','2020-09-09 22:28:45'),('default_records_to_include_weight','2023-04-07 23:29:22'),('delete_null_translations','2024-01-05 09:20:48'),('detailed_hold_notice_configuration','2019-01-28 20:58:56'),('development_components_to_epics','2022-11-23 23:15:39'),('development_components_to_tasks','2022-11-23 23:15:39'),('development_epics','2022-11-21 22:40:54'),('development_epics_to_tasks','2022-11-22 23:46:45'),('development_partners_to_epics','2022-11-22 23:46:45'),('development_partners_to_tasks','2022-11-22 23:46:45'),('development_sprints','2022-11-18 19:41:22'),('development_sprints_to_tasks','2022-11-22 23:46:45'),('development_tasks_take_2','2022-11-19 00:00:43'),('development_tickets_to_components','2022-11-23 23:55:49'),('development_tickets_to_tasks','2022-11-22 23:46:44'),('disable_auto_correction_of_searches','2019-01-28 20:58:56'),('disable_circulation_actions','2024-01-05 09:20:52'),('disable_hoopla_module_auto_restart','2019-12-03 14:45:39'),('disable_linking_changes','2022-12-01 02:32:10'),('dismissPlacardButtonIcon','2021-11-03 23:21:36'),('dismissPlacardButtonLocation','2021-11-03 23:21:36'),('displayMaterialsRequestToPublic','2021-11-03 15:59:06'),('display_explore_more_bar','2024-10-15 18:40:03'),('display_explore_more_bar_additional_options','2024-10-15 18:40:03'),('display_explore_more_bar_in_ebsco_host_search','2024-10-15 18:40:03'),('display_list_author_control','2024-01-05 09:20:51'),('display_pika_logo','2019-01-28 20:58:56'),('donations_addLocationSettings','2021-11-19 22:02:06'),('donations_createDonationsDedicateType','2021-11-19 22:02:06'),('donations_createDonationsDedicateTypeB','2021-11-30 16:30:44'),('donations_createDonationsEarmarks','2021-11-19 22:02:06'),('donations_createDonationsEarmarksA','2021-11-30 16:30:44'),('donations_createDonationsEarmarksB','2021-11-30 16:30:44'),('donations_createDonationsFormFields','2021-11-19 22:02:06'),('donations_createDonationsFormFieldsA','2021-11-30 16:30:44'),('donations_createDonationsFormFieldsB','2021-11-30 16:30:44'),('donations_createDonationsValue','2021-11-19 22:02:06'),('donations_createDonationsValueA','2021-11-30 16:30:44'),('donations_createDonationsValueB','2021-11-30 16:30:44'),('donations_createInitialTable','2021-11-19 22:02:06'),('donations_createInitialTableA','2021-11-30 16:30:44'),('donations_createInitialTableB','2021-11-30 16:30:44'),('donations_disambiguate_library_and_location','2024-01-05 09:20:48'),('donations_donations_createDonationsDedicateTypeA','2021-11-30 16:30:44'),('donations_report_permissions','2021-12-09 02:49:14'),('donations_settings','2021-11-19 22:02:06'),('donation_formFields_uniqueKey','2021-12-01 02:29:06'),('dpla_api_settings','2020-01-09 01:49:33'),('dpla_integration','2019-01-28 20:58:56'),('drop_columns_from_user_table','2024-10-15 18:40:05'),('drop_securityId_cp','2023-04-21 15:52:07'),('drop_snappayToken_column','2024-10-15 18:40:05'),('drop_sso_mapping_constraints','2023-03-10 17:01:05'),('drop_user_staff_settings','2023-02-22 21:22:19'),('ebscohost_database_logo_default','2022-06-27 22:46:18'),('ebscohost_facets','2022-06-22 15:52:20'),('ebscohost_ip_addresses','2022-06-24 13:38:50'),('ebscohost_record_usage','2022-06-24 13:38:50'),('ebscohost_remove_authType','2022-06-27 21:34:26'),('ebscohost_search_settings','2022-06-16 21:12:29'),('ebsco_eds_increase_id_length','2020-07-22 14:05:26'),('ebsco_eds_record_usage','2020-07-21 13:33:42'),('ebsco_eds_research_starters','2020-07-27 17:16:30'),('ebsco_eds_usage_add_instance','2020-12-21 22:44:24'),('ecommerce_report_permissions','2021-08-23 18:45:52'),('ecommerce_report_permissions_all_vs_home','2024-01-05 09:20:48'),('eContentCheckout','2011-11-10 23:57:56'),('eContentCheckout_1','2011-12-13 16:04:03'),('eContentHistory','2011-11-15 17:56:44'),('eContentHolds','2011-11-10 22:39:20'),('eContentItem_1','2011-12-04 22:13:19'),('eContentRating','2011-11-16 21:53:43'),('eContentRecord_1','2011-12-01 21:43:54'),('eContentRecord_2','2012-01-11 20:06:48'),('eContentWishList','2011-12-08 20:29:48'),('econtent_attach','2011-12-30 19:12:22'),('econtent_locations_to_include','2019-01-28 20:56:58'),('econtent_marc_import','2011-12-15 22:48:22'),('editorial_review','2019-01-28 20:58:58'),('editorial_review_1','2019-01-28 20:58:58'),('editorial_review_2','2019-01-28 20:58:58'),('edit_placard_permissions','2021-09-08 17:10:17'),('emailTemplates','2024-01-05 09:20:50'),('email_stats','2024-01-05 09:20:54'),('enableAppAccess','2021-09-01 18:32:47'),('enable_archive','2019-01-28 20:58:56'),('encrypt_user_table','2021-02-12 22:47:45'),('error_table','2019-11-18 17:53:59'),('error_table_agent','2019-11-18 17:53:59'),('events_add_settings','2021-02-12 01:49:54'),('events_facets','2024-01-05 09:20:39'),('events_facets_default','2024-01-05 09:20:40'),('events_facet_settingsId','2024-01-05 09:20:40'),('events_indexing_log','2020-04-30 14:33:55'),('events_in_lists','2024-01-05 09:20:37'),('events_module_log_checks','2020-11-09 19:22:45'),('events_spotlights','2020-07-22 12:50:01'),('events_start_date_facet','2024-01-05 09:20:40'),('event_library_mapping','2023-05-18 21:13:21'),('event_library_mapping_values','2023-05-18 21:13:21'),('event_record_usage','2020-04-30 14:33:56'),('event_registration_modal','2024-01-05 09:20:38'),('evergreen_extract_number_of_threads','2024-01-05 09:20:54'),('evergreen_extract_options','2024-01-05 09:20:54'),('evergreen_folio_modules','2022-02-21 19:09:05'),('evolve_module','2022-06-22 15:52:20'),('expiration_message','2019-01-28 20:58:56'),('explore_more_configuration','2019-01-28 20:58:56'),('exportingUrlDescription','2024-01-05 09:20:48'),('extend_bookcover_info_source','2023-02-28 00:42:33'),('extend_grouped_work_id_not_interested','2023-02-28 00:42:33'),('extend_placard_link','2021-05-12 22:50:28'),('extend_symphonyPaymentType','2024-01-05 09:20:51'),('extend_web_form_label','2023-03-30 07:32:08'),('externalLinkTracking','2019-01-28 20:58:58'),('externalRequestsLog','2021-11-03 23:21:36'),('externalRequestsLogMethod','2021-11-09 18:04:51'),('externalRequestsRequestMethodLength','2023-01-19 17:23:41'),('external_materials_request','2019-01-28 20:58:56'),('facetLabel_length','2020-01-09 01:49:33'),('facets_add_multi_select','2019-11-18 17:53:42'),('facets_add_translation','2019-11-18 17:53:43'),('facets_locking','2019-11-18 17:53:42'),('facets_remove_author_results','2019-11-18 17:53:42'),('facet_counts_to_show','2022-06-14 15:52:06'),('facet_grouping_updates','2019-01-28 20:58:55'),('facet_setting_ids','2024-01-05 09:20:47'),('failed_login_index','2024-01-05 09:20:52'),('field_encryption','2021-02-12 01:49:54'),('fileUploadsThumb','2021-07-16 16:03:44'),('file_uploads_table','2020-04-30 14:33:56'),('fix_dates_in_item_details','2021-07-17 23:37:56'),('fix_ils_record_indexes','2021-07-21 22:25:50'),('fix_ils_volume_indexes','2021-08-23 18:45:42'),('fix_incorrect_available_memory','2022-07-09 21:43:07'),('fix_list_entries_for_grouped_works_with_language','2022-06-14 15:51:04'),('fix_requiredModule_website_facets','2024-01-05 09:20:48'),('fix_sideload_permissions','2022-03-29 17:55:59'),('fix_sierra_module_background_process','2020-11-28 15:55:27'),('fix_user_email','2024-01-05 09:20:43'),('footerText','2022-04-27 15:24:28'),('forceReindexForAxis360_2302','2023-02-02 16:09:43'),('force_overdrive_full_update','2024-01-05 09:20:55'),('force_processing_empty_works','2023-05-07 15:39:54'),('force_regrouping_all_works_24_05','2024-06-25 15:05:20'),('force_reindex_of_old_style_palace_project_identifiers','2024-10-15 18:40:03'),('force_reindex_of_records_with_no_language','2022-09-10 21:14:16'),('force_reindex_of_records_with_pipe_language','2022-06-14 15:50:20'),('force_reindex_of_records_with_spaces','2022-09-01 23:15:02'),('force_reload_of_cloud_library_21_08','2021-06-27 17:52:03'),('force_reload_of_hoopla_21_08','2021-07-06 15:52:37'),('force_reload_of_hoopla_22_10','2022-10-06 14:57:03'),('force_reload_of_overdrive_21_08','2021-07-06 15:52:37'),('force_website_reindex_22_05','2022-04-28 23:20:29'),('format_holdType','2019-11-18 17:53:46'),('format_mustPickupAtHoldingBranch','2021-05-03 20:49:18'),('format_status_in_library_use_only','2020-03-05 22:53:47'),('format_status_maps','2019-11-18 17:53:46'),('format_status_suppression','2019-11-18 17:53:46'),('full_record_view_configuration_options','2019-01-28 20:58:56'),('full_text_limiter','2024-06-25 15:05:22'),('genealogy','2019-01-28 20:58:58'),('genealogy_1','2019-01-28 20:58:58'),('genealogy_lot_length','2020-10-30 19:03:30'),('genealogy_marriage_date_update','2020-12-21 23:11:40'),('genealogy_module','2020-07-23 17:45:42'),('genealogy_nashville_1','2019-01-28 20:58:58'),('genealogy_obituary_date_update','2020-08-18 01:30:03'),('genealogy_person_date_update','2020-12-21 23:11:40'),('goodreads_library_contact_link','2019-01-28 20:58:56'),('google_analytics_version','2020-11-07 18:32:16'),('google_api_settings','2020-01-08 18:34:34'),('google_bucket','2023-03-10 17:01:05'),('google_more_settings','2020-02-09 22:24:59'),('google_remove_google_translate','2020-11-07 18:32:16'),('grapes_js_web_builder_roles','2024-10-15 18:40:03'),('grapes_js_web_builder_roles_for_permissions','2024-10-15 18:40:03'),('grapes_page_web_builder_scope_by_library','2024-10-15 18:40:03'),('grapes_web_builder','2024-10-15 18:40:03'),('greenhouseMonitoring','2021-10-28 01:50:56'),('greenhouseMonitoring2','2021-10-29 22:56:24'),('greenhouseSlackIntegration','2021-10-29 22:27:33'),('greenhouseSlackIntegration2','2024-10-15 18:40:03'),('greenhouse_add_accessToken','2022-08-22 18:57:13'),('greenhouse_add_ils','2021-12-16 23:09:22'),('greenhouse_appAccess','2021-08-25 16:40:51'),('greenhouse_contact_and_go_live','2022-03-04 00:24:28'),('greenhouse_cpu_and_memory_monitoring','2022-07-04 17:35:06'),('greenhouse_rt_auth_token','2022-11-29 23:38:45'),('greenhouse_rt_base_url','2022-11-30 21:22:54'),('greenhouse_setting_apiKeys','2021-11-30 22:37:05'),('greenhouse_wait_time_monitoring','2022-07-14 23:19:46'),('grouped_works','2019-01-28 20:58:56'),('grouped_works_1','2019-01-28 20:58:56'),('grouped_works_2','2019-01-28 20:58:56'),('grouped_works_partial_updates','2019-01-28 20:58:57'),('grouped_works_primary_identifiers','2019-01-28 20:58:56'),('grouped_works_primary_identifiers_1','2019-01-28 20:58:56'),('grouped_works_remove_split_titles','2019-01-28 20:58:56'),('grouped_work_alternate_titles','2020-02-09 22:24:42'),('grouped_work_debugging','2024-06-25 15:05:21'),('grouped_work_display_856_as_access_online','2022-10-06 14:57:01'),('grouped_work_display_info','2020-05-16 13:20:05'),('grouped_work_display_settings','2019-12-18 18:55:36'),('grouped_work_display_showItemDueDates','2021-06-10 16:30:21'),('grouped_work_display_title_author','2020-05-15 15:58:23'),('grouped_work_duplicate_identifiers','2019-01-28 20:58:57'),('grouped_work_engine','2019-01-28 20:58:57'),('grouped_work_evoke','2019-01-28 20:58:57'),('grouped_work_identifiers_ref_indexing','2019-01-28 20:58:57'),('grouped_work_index_cleanup','2019-01-28 20:58:57'),('grouped_work_index_date_updated','2019-01-28 20:58:57'),('grouped_work_language','2022-05-26 19:42:54'),('grouped_work_merging','2019-01-28 20:58:57'),('grouped_work_primary_identifiers_hoopla','2019-01-28 20:58:57'),('grouped_work_primary_identifier_length','2024-01-05 09:20:53'),('grouped_work_primary_identifier_types','2019-01-28 20:58:57'),('grouped_work_title_length','2021-02-25 14:33:53'),('header_text','2019-01-28 20:58:56'),('hide_series','2024-03-25 16:02:14'),('hide_subjects_drop_date_added','2024-03-25 16:02:14'),('hide_subject_facets','2022-09-01 12:55:29'),('hide_subject_facet_permission','2022-09-01 12:55:29'),('holdIsILL','2022-06-01 19:33:16'),('hold_request_confirmations','2021-07-06 15:52:37'),('holiday','2019-01-28 20:59:01'),('holiday_1','2019-01-28 20:59:01'),('hoopla_add_settings','2019-11-18 17:53:48'),('hoopla_add_settings_2','2021-05-06 03:22:55'),('hoopla_add_setting_to_scope','2020-12-14 17:03:19'),('hoopla_bingepass','2022-07-26 17:12:46'),('hoopla_exportLog','2019-01-28 20:58:57'),('hoopla_exportLog_skips','2019-11-18 17:53:48'),('hoopla_exportLog_update','2019-11-18 17:53:48'),('hoopla_exportTables','2019-01-28 20:58:57'),('hoopla_export_include_raw_data','2019-11-18 17:53:48'),('hoopla_filter_records_from_other_vendors','2019-11-18 17:53:49'),('hoopla_genres_to_exclude','2022-10-06 14:57:01'),('hoopla_index_by_day','2022-11-09 00:15:35'),('hoopla_integration','2019-01-28 20:58:56'),('hoopla_library_options','2019-01-28 20:58:56'),('hoopla_library_options_remove','2019-01-28 20:58:56'),('hoopla_module_add_log','2020-03-31 18:45:02'),('hoopla_regroup_all_records','2021-09-15 23:32:28'),('hoopla_restrict_scopes_by_audience','2024-04-11 17:23:35'),('hoopla_scoping','2019-11-18 17:53:48'),('hoopla_title_exclusion_updates','2022-04-06 06:54:10'),('hoopla_usage_add_instance','2020-12-21 17:27:45'),('horizontal_search_bar','2019-01-28 20:58:56'),('host_information','2020-10-27 17:06:37'),('hours_and_locations_control','2019-01-28 20:58:55'),('htmlForMarkdown','2021-03-01 14:37:04'),('ill_link','2019-01-28 20:58:56'),('ils_code_records_owned_length','2019-01-28 20:58:56'),('ils_exportLog','2019-11-18 17:53:45'),('ils_exportLog_num_regroups','2021-02-24 23:42:44'),('ils_exportLog_skips','2019-11-18 17:53:45'),('ils_hold_summary','2019-01-28 20:58:57'),('ils_log_add_records_with_invalid_marc','2022-03-20 19:04:15'),('ils_marc_checksums','2019-01-28 20:59:02'),('ils_marc_checksum_first_detected','2019-01-28 20:59:02'),('ils_marc_checksum_first_detected_signed','2019-01-28 20:59:02'),('ils_marc_checksum_source','2019-01-28 20:59:02'),('ils_record_suppression','2022-06-09 18:26:20'),('ils_usage_add_instance','2020-12-21 17:22:16'),('includePersonalAndCorporateNamesInTopics','2023-02-24 23:09:30'),('include_children_kids','2024-04-11 17:23:35'),('increaseExternalRequestResponseField','2021-11-30 16:30:44'),('increaseFullMarcExportRecordIdThreshold','2021-11-30 16:30:45'),('increaseGreenhouseDataNameLength','2021-09-09 00:16:03'),('increaseLengthOfShowInMainDetails','2021-05-03 20:49:18'),('increaseSymphonyPaymentTypeAndPolicyLengths','2021-10-07 22:56:12'),('increase_checkout_due_date','2021-08-23 18:45:42'),('increase_course_reserves_instructor','2024-03-25 16:02:14'),('increase_course_reserves_source_length','2022-06-22 15:52:20'),('increase_format_length_for_circulation_cache','2024-10-15 18:40:03'),('increase_grouped_work_length_for_language','2022-05-26 19:43:21'),('increase_ill_link_size','2023-03-02 22:15:39'),('increase_ilsID_size_for_ils_marc_checksums','2019-01-28 20:58:57'),('increase_length_of_new_materials_request_column','2023-03-17 19:55:10'),('increase_length_of_shelf_locations_to_exclude','2023-03-20 20:44:03'),('increase_login_form_labels','2019-01-28 20:58:56'),('increase_nonHoldableITypes','2021-10-07 22:56:11'),('increase_patron_type_length','2024-06-25 15:05:21'),('increase_scoping_field_lengths','2021-08-23 18:45:42'),('increase_scoping_field_lengths_2','2024-01-05 09:20:49'),('increase_search_url_size','2019-11-18 17:53:58'),('increase_search_url_size_round_2','2020-04-30 14:33:56'),('increase_showInSearchResultsMainDetails_length','2021-05-29 16:17:45'),('increase_sublocation_to_include','2023-01-18 15:01:51'),('increase_translation_map_value_length','2022-03-20 19:04:15'),('increase_volumeId_length','2021-07-16 16:03:44'),('index856Links','2023-02-26 18:21:48'),('indexAndSearchVersionVariables','2022-05-26 19:42:54'),('indexed_information_length','2021-07-06 15:52:37'),('indexed_information_publisher_length','2021-07-11 21:04:56'),('indexing_exclude_locations','2020-07-08 14:56:04'),('indexing_includeLocationNameInDetailedLocation','2020-09-14 14:09:06'),('indexing_lastUpdateOfAuthorities','2021-02-01 15:27:43'),('indexing_module_add_log','2020-03-31 18:45:02'),('indexing_module_add_settings','2021-02-12 01:49:54'),('indexing_module_add_settings2','2021-03-05 20:16:16'),('indexing_profile','2019-01-28 20:58:57'),('indexing_profiles_add_due_date_for_Koha','2021-05-18 13:12:51'),('indexing_profiles_add_notes_subfield','2021-05-18 13:12:51'),('indexing_profiles_date_created_polaris','2021-05-26 16:19:08'),('indexing_profile_add_check_sierra_mat_type_for_format','2023-05-30 19:51:06'),('indexing_profile_add_continuous_update_fields','2019-11-18 17:53:45'),('indexing_profile_audienceSubfield','2020-08-07 14:36:04'),('indexing_profile_bibCallNumberFields','2024-10-15 18:40:03'),('indexing_profile_catalog_driver','2019-01-28 20:58:57'),('indexing_profile_collection','2019-01-28 20:58:57'),('indexing_profile_collectionsToSuppress','2019-01-28 20:58:57'),('indexing_profile_determineAudienceBy','2020-06-26 21:00:14'),('indexing_profile_doAutomaticEcontentSuppression','2019-01-28 20:58:57'),('indexing_profile_dueDateFormat','2019-01-28 20:58:57'),('indexing_profile_evergreen_org_unit_schema','2023-01-30 23:46:02'),('indexing_profile_extendLocationsToSuppress','2019-01-28 20:58:57'),('indexing_profile_fallbackFormatField','2022-01-06 18:46:17'),('indexing_profile_filenames_to_include','2019-01-28 20:58:57'),('indexing_profile_folderCreation','2019-01-28 20:58:57'),('indexing_profile_groupUnchangedFiles','2019-01-28 20:58:57'),('indexing_profile_holdability','2019-01-28 20:58:57'),('indexing_profile_lastChangeProcessed','2021-04-22 01:34:04'),('indexing_profile_lastRecordIdProcessed','2021-04-20 23:30:12'),('indexing_profile_last_checkin_date','2019-01-28 20:58:57'),('indexing_profile_last_marc_export','2019-11-18 17:53:46'),('indexing_profile_last_volume_export_timestamp','2020-12-21 14:47:23'),('indexing_profile_marc_encoding','2019-01-28 20:58:57'),('indexing_profile_marc_record_subfield','2019-03-11 05:22:58'),('indexing_profile_record_linking','2022-10-06 14:57:01'),('indexing_profile_regroup_all_records','2021-02-24 23:04:51'),('indexing_profile_replacement_cost_subfield','2024-10-15 18:40:04'),('indexing_profile_specific_order_location','2019-01-28 20:58:57'),('indexing_profile_specified_formats','2019-11-18 17:53:45'),('indexing_profile_speicified_formats','2019-01-28 20:58:57'),('indexing_profile_statusesToSuppressLength','2022-10-06 14:57:01'),('indexing_profile_under_consideration_order_records','2024-06-25 15:05:21'),('indexing_profile__full_export_record_threshold','2021-04-20 23:30:12'),('indexing_profile__remove_groupUnchangedFiles','2021-02-24 23:04:51'),('indexing_records_default_sub_location','2020-06-10 12:22:31'),('indexing_simplify_format_boosting','2021-02-22 16:03:55'),('index_common_timestamp_columns','2024-03-25 16:02:15'),('index_common_timestamp_columns_pt_2','2024-03-25 16:02:15'),('index_ils_barcode','2024-03-25 16:02:14'),('index_resources','2019-01-28 20:58:59'),('index_search_stats','2019-01-28 20:58:58'),('index_search_stats_counts','2019-01-28 20:58:58'),('index_subsets_of_overdrive','2019-01-28 20:58:56'),('initial_setup','2011-11-15 22:29:11'),('institution_code','2024-04-11 17:23:35'),('ip_address_logs','2020-09-14 14:09:06'),('ip_address_logs_login_info','2021-01-14 16:33:48'),('ip_debugging','2020-08-27 19:21:51'),('ip_log_queries','2021-03-19 14:13:56'),('ip_log_timing','2021-03-05 20:16:16'),('ip_lookup_1','2019-01-28 20:58:59'),('ip_lookup_2','2019-01-28 20:58:59'),('ip_lookup_3','2019-01-28 20:58:59'),('ip_lookup_blocking','2020-06-10 12:22:32'),('ip_lookup_showlogmeout','2022-01-05 21:16:09'),('islandora_cover_cache','2019-01-28 20:58:57'),('islandora_driver_cache','2019-01-28 20:58:57'),('islandora_lat_long_cache','2019-01-28 20:58:57'),('islandora_samePika_cache','2019-01-28 20:58:57'),('javascript_snippets','2020-10-26 18:02:00'),('languages_setup','2019-11-18 17:53:53'),('languages_show_for_translators','2019-11-18 17:53:54'),('language_locales','2020-11-02 16:19:32'),('large_print_indexing','2020-03-27 19:21:07'),('last_check_in_status_adjustments','2019-01-28 20:58:57'),('layout_settings','2019-12-18 18:48:10'),('layout_settings_contrast','2021-12-23 19:38:39'),('layout_settings_remove_showSidebarMenu','2020-08-27 17:51:27'),('layout_settings_remove_sidebarMenuButtonText','2021-01-16 22:58:46'),('lexile_branding','2019-01-28 20:58:56'),('libraryAdmin','2019-01-28 20:58:59'),('libraryAllowUsernameUpdates','2020-07-08 14:56:02'),('libraryAlternateCardSetup','2020-06-19 20:20:57'),('libraryAvailableHoldDelay','2020-07-21 13:33:42'),('libraryCardBarcode','2020-06-19 20:20:57'),('libraryProfileRequireNumericPhoneNumbersWhenUpdatingProfile','2020-08-03 20:28:58'),('libraryProfileUpdateOptions','2020-07-21 13:33:41'),('library_1','2019-01-28 20:56:57'),('library_10','2019-01-28 20:56:57'),('library_11','2019-01-28 20:56:57'),('library_12','2019-01-28 20:56:57'),('library_13','2019-01-28 20:56:57'),('library_14','2019-01-28 20:56:57'),('library_15','2019-01-28 20:56:57'),('library_16','2019-01-28 20:56:57'),('library_17','2019-01-28 20:56:57'),('library_18','2019-01-28 20:56:57'),('library_19','2019-01-28 20:56:57'),('library_2','2019-01-28 20:56:57'),('library_20','2019-01-28 20:56:57'),('library_21','2019-01-28 20:56:57'),('library_23','2019-01-28 20:56:57'),('library_24','2019-01-28 20:56:57'),('library_25','2019-01-28 20:56:57'),('library_26','2019-01-28 20:56:57'),('library_28','2019-01-28 20:56:57'),('library_29','2019-01-28 20:56:57'),('library_3','2019-01-28 20:56:57'),('library_30','2019-01-28 20:56:57'),('library_31','2019-01-28 20:56:57'),('library_32','2019-01-28 20:56:57'),('library_33','2019-01-28 20:56:57'),('library_34','2019-01-28 20:56:57'),('library_35_marmot','2019-01-28 20:56:57'),('library_35_nashville','2019-01-28 20:56:57'),('library_36_nashville','2019-01-28 20:56:57'),('library_4','2019-01-28 20:56:57'),('library_5','2019-01-28 20:56:57'),('library_6','2019-01-28 20:56:57'),('library_7','2019-01-28 20:56:57'),('library_8','2019-01-28 20:56:57'),('library_9','2019-01-28 20:56:57'),('library_add_can_update_phone_number','2020-09-16 23:42:31'),('library_add_can_update_work_phone_number','2024-06-25 15:05:20'),('library_add_oai_searching','2019-11-18 17:53:40'),('library_allowDeletingILSRequests','2021-05-06 03:26:45'),('library_allow_home_library_updates','2021-01-17 03:04:54'),('library_allow_remember_pickup_location','2021-01-16 22:58:46'),('library_archive_material_requests','2019-01-28 20:58:56'),('library_archive_material_request_form_configurations','2019-01-28 20:58:56'),('library_archive_pid','2019-01-28 20:58:56'),('library_archive_related_objects_display_mode','2019-01-28 20:58:56'),('library_archive_request_customization','2019-01-28 20:58:56'),('library_archive_search_facets','2019-01-28 20:58:55'),('library_barcodes','2019-01-28 20:58:55'),('library_bookings','2019-01-28 20:58:55'),('library_cancel_in_transit_holds','2024-01-05 09:20:56'),('library_cas_configuration','2019-01-28 20:58:56'),('library_citationOptions','2022-02-21 20:49:29'),('library_CityStateField','2022-12-14 23:10:16'),('library_claim_authorship_customization','2019-01-28 20:58:56'),('library_cleanup','2019-12-18 18:42:59'),('library_consortial_interface','2021-10-13 17:18:10'),('library_contact_links','2019-01-28 20:56:57'),('library_course_reserves_libraries_to_include','2021-11-30 16:30:45'),('library_css','2019-01-28 20:56:57'),('library_default_materials_request_permissions','2021-06-08 16:30:34'),('library_deletePaymentHistoryOlderThan','2024-03-25 16:02:14'),('library_displayName_length','2022-02-21 19:09:05'),('library_eds_integration','2019-01-28 20:58:56'),('library_eds_search_integration','2019-01-28 20:58:56'),('library_enableForgotPasswordLink','2020-02-09 22:24:42'),('library_enableReadingHistory','2022-02-21 20:22:50'),('library_enableSavedSearches','2022-03-01 12:54:52'),('library_enable_cost_savings','2024-10-15 18:40:04'),('library_enable_web_builder','2020-07-22 12:49:58'),('library_events_setting','2020-04-30 14:33:55'),('library_expiration_warning','2019-01-28 20:56:57'),('library_facets','2019-01-28 20:58:55'),('library_facets_1','2019-01-28 20:58:55'),('library_facets_2','2019-01-28 20:58:55'),('library_field_level_permissions','2021-05-29 21:27:28'),('library_field_permission_updates_21_07_01','2021-06-08 13:55:03'),('library_fine_payment_order','2019-12-03 14:45:39'),('library_fine_updates_msb','2021-03-05 20:16:16'),('library_fine_updates_paypal','2019-11-18 17:53:43'),('library_grouping','2019-01-28 20:56:57'),('library_holdPlacedAt','2022-03-08 21:20:07'),('library_holdRange','2022-12-19 15:25:00'),('library_ils_code_expansion','2019-01-28 20:56:57'),('library_ils_code_expansion_2','2019-01-28 20:56:58'),('library_indexes','2019-11-18 17:53:41'),('library_links','2019-01-28 20:56:57'),('library_links_display_options','2019-01-28 20:56:57'),('library_links_menu_update','2020-09-27 22:33:11'),('library_links_open_in_new_tab','2020-03-27 19:21:05'),('library_links_showToLoggedInUsersOnly','2020-04-30 14:33:47'),('library_links_show_html','2019-01-28 20:56:57'),('library_lists_without_editable_text','2022-11-29 15:37:00'),('library_location_availability_toggle_updates','2019-01-28 20:58:56'),('library_location_axis360_scoping','2020-08-07 14:36:04'),('library_location_boosting','2019-01-28 20:56:57'),('library_location_cloud_library_scoping','2019-11-18 17:53:42'),('library_location_defaults','2019-12-18 18:42:59'),('library_location_display_controls','2019-01-28 20:58:55'),('library_location_hoopla_scoping','2019-11-18 17:53:41'),('library_location_palace_project_scoping','2024-01-05 09:20:52'),('library_location_rbdigital_scoping','2019-11-18 17:53:41'),('library_location_repeat_online','2019-01-28 20:56:57'),('library_location_side_load_scoping','2019-11-18 17:53:47'),('library_login_notes','2020-11-09 19:22:45'),('library_materials_request_limits','2019-01-28 20:56:57'),('library_materials_request_new_request_summary','2019-01-28 20:56:57'),('library_max_fines_for_account_update','2019-01-28 20:58:56'),('library_menu_link_languages','2021-09-11 20:31:09'),('library_nameAndDobUpdates','2022-04-01 23:01:16'),('library_on_order_counts','2019-01-28 20:58:56'),('library_order_information','2019-01-28 20:56:57'),('library_patronNameDisplayStyle','2019-01-28 20:58:56'),('library_patron_messages','2021-03-30 14:30:44'),('library_payment_history','2024-03-25 16:02:14'),('library_pin_reset','2019-01-28 20:56:57'),('library_prevent_expired_card_login','2019-01-28 20:56:57'),('library_prompt_birth_date','2019-01-28 20:58:55'),('library_propay_settings','2021-04-08 13:50:39'),('library_remove_gold_rush','2019-11-18 17:53:41'),('library_remove_overdrive_advantage_info','2020-09-03 19:46:25'),('library_remove_unusedColumns','2019-11-18 17:53:40'),('library_remove_unusedDisplayOptions_3_18','2019-11-18 17:53:40'),('library_remove_unused_recordsToBlackList','2019-11-18 17:53:40'),('library_rename_prospector','2019-11-18 17:53:39'),('library_rename_showPickupLocationInProfile','2021-01-17 03:51:29'),('library_showConvertListsFromClassic','2020-02-09 22:24:42'),('library_showVolumesWithLocalCopiesFirst','2022-11-27 21:08:05'),('library_show_card_expiration_date','2021-08-23 18:45:52'),('library_show_display_name','2019-01-28 20:58:55'),('library_show_language_and_display_in_header','2024-01-05 09:20:55'),('library_show_messaging_settings','2021-10-13 17:18:10'),('library_show_quick_copy','2019-11-18 17:53:42'),('library_show_series_in_main_details','2019-01-28 20:58:56'),('library_sidebar_menu','2019-01-28 20:58:56'),('library_sidebar_menu_button_text','2019-01-28 20:58:56'),('library_sitemap_changes','2020-04-30 14:33:47'),('library_subject_display','2019-01-28 20:58:56'),('library_subject_display_2','2019-01-28 20:58:56'),('library_systemHoldNotes','2022-02-03 03:31:28'),('library_system_message','2020-03-31 18:45:02'),('library_tiktok_link','2021-05-12 22:50:27'),('library_toggle_hold_position','2024-03-25 16:02:15'),('library_top_links','2019-01-28 20:56:57'),('library_use_theme','2019-02-26 00:09:00'),('library_validPickupSystemLength','2021-11-17 19:59:38'),('library_workstation_id_polaris','2021-05-26 16:19:08'),('linked_accounts_switch','2019-01-28 20:58:56'),('link_format_sorting_to_display_settings','2024-10-15 18:40:04'),('listPublisherRole','2019-01-28 20:58:59'),('list_indexing_permission','2020-09-09 18:44:18'),('list_wdiget_list_update_1','2019-01-28 20:58:57'),('list_wdiget_update_1','2019-01-28 20:58:57'),('list_widgets','2019-01-28 20:58:57'),('list_widgets_home','2019-01-28 20:58:57'),('list_widgets_update_1','2019-01-28 20:58:57'),('list_widgets_update_2','2019-01-28 20:58:57'),('list_widget_num_results','2019-01-28 20:58:57'),('list_widget_search_terms','2020-02-09 22:24:43'),('list_widget_style_update','2019-01-28 20:58:57'),('list_widget_update_2','2019-01-28 20:58:57'),('list_widget_update_3','2019-01-28 20:58:57'),('list_widget_update_4','2019-01-28 20:58:57'),('list_widget_update_5','2019-01-28 20:58:57'),('literaryFormIndexingUpdates','2021-09-12 17:01:38'),('lm_library_calendar_events_data','2020-04-30 14:33:55'),('lm_library_calendar_private_feed_settings','2020-04-30 14:33:55'),('lm_library_calendar_settings','2020-04-30 14:33:55'),('loadBadWords','2021-10-27 14:05:27'),('loadCoversFrom020z','2020-04-30 14:33:56'),('loan_rule_determiners_1','2019-01-28 20:59:01'),('loan_rule_determiners_increase_ptype_length','2019-01-28 20:59:01'),('localized_browse_categories','2019-01-28 20:59:02'),('local_urls','2021-07-21 22:25:51'),('locationHistoricCode','2020-06-19 20:20:57'),('location_1','2019-01-28 20:58:55'),('location_10','2019-01-28 20:58:56'),('location_2','2019-01-28 20:58:56'),('location_3','2019-01-28 20:58:56'),('location_4','2019-01-28 20:58:56'),('location_5','2019-01-28 20:58:56'),('location_6','2019-01-28 20:58:56'),('location_7','2019-01-28 20:58:56'),('location_8','2019-01-28 20:58:56'),('location_9','2019-01-28 20:58:56'),('location_additional_branches_to_show_in_facets','2019-01-28 20:58:56'),('location_address','2019-01-28 20:58:56'),('location_add_notes_to_hours','2020-08-03 20:28:58'),('location_allow_multiple_open_hours_per_day','2019-11-18 17:53:42'),('location_facets','2019-01-28 20:58:55'),('location_facets_1','2019-01-28 20:58:55'),('location_field_level_permissions','2021-06-01 15:24:41'),('location_hours','2019-01-28 20:59:01'),('location_include_library_records_to_include','2019-01-28 20:58:56'),('location_increase_code_column_size','2019-01-28 20:58:56'),('location_library_control_shelf_location_and_date_added_facets','2019-01-28 20:58:56'),('location_self_registration_branch','2022-10-06 14:57:01'),('location_show_display_name','2019-01-28 20:58:56'),('location_show_language_and_display_in_header','2024-01-05 09:20:55'),('location_subdomain','2019-01-28 20:58:56'),('location_sublocation','2019-01-28 20:58:56'),('location_sublocation_uniqueness','2019-01-28 20:58:56'),('location_tty_description','2020-11-02 16:19:31'),('login_form_labels','2019-01-28 20:58:56'),('login_unless_in_library','2021-12-27 20:24:06'),('logout_after_hold_options','2022-01-07 00:06:56'),('logo_linking','2019-01-28 20:58:56'),('longer_stripe_keys','2024-01-05 09:20:58'),('lowercase_all_tables','2023-03-29 09:39:10'),('main_location_switch','2019-01-28 20:58:56'),('make_nyt_user_list_publisher','2020-02-09 22:24:42'),('make_volumes_case_sensitive','2021-08-23 18:45:42'),('manageMaterialsRequestFieldsToDisplay','2019-01-28 20:58:59'),('marcImport','2019-01-28 20:59:01'),('marcImport_1','2019-01-28 20:59:01'),('marcImport_2','2019-01-28 20:59:01'),('marcImport_3','2019-01-28 20:59:01'),('marc_last_modified','2021-07-15 05:01:14'),('masquerade_automatic_timeout_length','2019-01-28 20:58:56'),('masquerade_permissions','2020-09-07 15:12:17'),('masquerade_ptypes','2019-01-28 20:59:01'),('materialRequestsRole','2019-01-28 20:58:59'),('materialsRequest','2019-01-28 20:58:58'),('materialsRequestFixColumns','2019-01-28 20:58:59'),('materialsRequestFormats','2019-01-28 20:58:59'),('materialsRequestFormFields','2019-01-28 20:58:59'),('materialsRequestLibraryId','2019-01-28 20:58:59'),('materialsRequestStaffComments','2021-08-25 16:40:52'),('materialsRequestStatus','2019-01-28 20:58:59'),('materialsRequestStatus_update1','2019-01-28 20:58:59'),('materialsRequest_update1','2019-01-28 20:58:58'),('materialsRequest_update2','2019-01-28 20:58:58'),('materialsRequest_update3','2019-01-28 20:58:58'),('materialsRequest_update4','2019-01-28 20:58:58'),('materialsRequest_update5','2019-01-28 20:58:58'),('materialsRequest_update6','2019-01-28 20:58:58'),('materialsRequest_update7','2019-01-28 20:58:59'),('materials_request_days_to_keep','2019-01-28 20:58:56'),('materials_request_format_active_for_new_requests','2022-11-02 02:59:14'),('materials_request_hold_candidates','2024-10-15 18:40:04'),('materials_request_hold_candidate_generation_log','2024-10-15 18:40:04'),('materials_request_hold_failure_message','2024-10-15 18:40:04'),('materials_request_ready_for_holds','2024-10-15 18:40:04'),('materials_request_selected_hold_candidate','2024-10-15 18:40:04'),('memory_index','2019-11-18 17:53:59'),('memory_table','2019-11-18 17:53:59'),('memory_table_size_increase','2019-11-18 17:53:59'),('merged_records','2019-01-28 20:58:59'),('migrate_form_submissions','2024-01-05 09:20:58'),('migrate_library_sso_settings','2023-02-09 17:11:58'),('migrate_records_owned','2023-01-04 22:41:33'),('migrate_web_resource_library_access_rules','2024-10-15 18:40:04'),('millenniumTables','2019-01-28 20:59:01'),('modifyColumnSizes_1','2011-11-10 19:46:03'),('modules','2019-11-18 17:53:39'),('module_log_information','2020-03-31 18:45:02'),('module_settings_information','2021-02-12 01:49:54'),('monitorAntivirus','2024-01-05 09:20:55'),('more_details_customization','2019-01-28 20:58:56'),('move_aspen_lida_settings','2022-08-17 22:43:45'),('move_cookieConsent_to_library_settings','2024-01-05 09:20:39'),('move_includePersonalAndCorporateNamesInTopics','2023-03-10 17:47:18'),('move_library_quick_searches','2022-08-17 22:43:45'),('move_location_app_settings','2022-08-17 22:43:45'),('move_unchanged_scope_data_to_item','2021-07-16 16:05:20'),('ncr_library_setting','2024-06-25 15:05:22'),('ncr_payments_settings','2024-06-25 15:05:22'),('ncr_permissions','2024-06-25 15:05:22'),('nearby_book_store','2019-01-28 20:59:01'),('newRolesJan2016','2019-01-28 20:58:59'),('new_search_stats','2019-01-28 20:58:58'),('new_york_times_user_updates','2020-10-27 17:06:36'),('nongrouped_records','2019-01-28 20:58:59'),('non_numeric_ptypes','2019-01-28 20:59:01'),('normalize_scope_data','2021-07-15 08:06:59'),('notices_1','2011-12-02 18:26:28'),('notifications_report_permissions','2022-08-22 18:57:13'),('notInterested','2019-01-28 20:58:58'),('notInterestedWorks','2019-01-28 20:58:58'),('notInterestedWorksRemoveUserIndex','2019-01-28 20:58:58'),('novelist_data','2019-01-28 20:59:02'),('novelist_data_indexes','2019-11-18 17:53:56'),('novelist_data_json','2019-11-18 17:53:56'),('novelist_settings','2020-01-03 19:47:26'),('nyt_api_settings','2020-01-09 01:49:33'),('nyt_update_log_numSkipped','2021-03-29 21:10:57'),('OAI_default_image','2024-01-05 09:20:37'),('oai_record_lastSeen','2023-05-08 14:13:51'),('oai_website_permissions','2020-09-09 15:44:06'),('object_history','2020-05-14 19:25:09'),('object_history_action_type','2022-12-22 18:35:24'),('object_history_field_lengths','2020-05-14 19:25:09'),('offline_circulation','2019-01-28 20:59:02'),('offline_holds','2019-01-28 20:59:02'),('offline_holds_update_1','2019-01-28 20:59:02'),('offline_holds_update_2','2019-01-28 20:59:02'),('omdb_disableCoversWithNoDates','2021-11-09 18:41:08'),('omdb_settings','2020-03-27 19:52:27'),('only_allow_100_titles_per_collection_spotlight','2023-05-08 17:10:51'),('open_archives_collection','2019-11-18 17:53:54'),('open_archives_collection_filtering','2019-11-18 17:53:54'),('open_archives_collection_subjects','2019-11-18 17:53:54'),('open_archives_deleted_collections','2022-05-10 13:49:53'),('open_archives_facets','2024-01-05 09:20:45'),('open_archives_facets_default','2024-01-05 09:20:45'),('open_archives_image_regex','2021-09-30 15:57:01'),('open_archives_index_all_sets','2024-03-25 16:02:13'),('open_archives_loadOneMonthAtATime','2019-11-18 17:53:55'),('open_archives_log','2019-11-18 17:53:55'),('open_archives_metadata_format','2024-03-25 16:02:13'),('open_archives_module_add_log','2020-03-31 18:45:02'),('open_archives_module_add_settings','2021-02-12 01:49:54'),('open_archives_multiple_imageRegex','2022-02-01 15:31:48'),('open_archives_record','2019-11-18 17:53:54'),('open_archives_reindex_all_collections_22_05','2022-05-10 13:49:53'),('open_archives_scoping','2020-12-14 17:03:19'),('open_archives_usage_add_instance','2020-12-21 17:31:10'),('open_archive_tracking_adjustments','2019-11-18 17:53:55'),('optionalUpdates','2024-01-05 09:20:48'),('optionalUpdates23_10','2024-01-05 09:20:48'),('overDriveDisableRequestLogging','2021-11-22 17:42:28'),('overdrive_account_cache','2012-01-02 22:16:10'),('overdrive_add_settings','2019-11-18 17:53:47'),('overdrive_add_setting_to_log','2020-12-14 17:03:19'),('overdrive_add_setting_to_product_availability','2020-12-14 17:03:19'),('overdrive_add_setting_to_scope','2020-12-14 17:03:19'),('overdrive_add_update_info_to_settings','2019-11-18 17:53:47'),('overdrive_allow_large_deletes','2021-02-06 21:31:44'),('overdrive_api_data','2016-06-30 17:11:12'),('overdrive_api_data_availability_shared','2019-11-18 17:53:47'),('overdrive_api_data_availability_type','2016-06-30 17:11:12'),('overdrive_api_data_crossRefId','2019-01-28 21:27:59'),('overdrive_api_data_metadata_isOwnedByCollections','2019-01-28 21:27:59'),('overdrive_api_data_update_1','2016-06-30 17:11:12'),('overdrive_api_data_update_2','2016-06-30 17:11:12'),('overdrive_api_remove_old_tables','2019-11-18 17:53:47'),('overdrive_availability_update_indexes','2021-02-06 21:31:44'),('overdrive_circulationEnabled','2021-09-15 04:46:04'),('overdrive_client_credentials','2021-01-14 16:33:48'),('overdrive_enable_allow_large_deletes','2022-07-28 19:43:51'),('overdrive_encrypt_client_secret','2022-02-27 18:40:30'),('overdrive_encrypt_client_secret_in_scope','2022-02-27 18:40:30'),('overdrive_format_length','2024-10-15 18:40:03'),('overdrive_handle_ise','2022-02-27 18:40:30'),('overdrive_index_cross_ref_id','2024-03-25 16:02:14'),('overdrive_integration','2019-01-28 20:58:56'),('overdrive_integration_2','2019-01-28 20:58:56'),('overdrive_integration_3','2019-01-28 20:58:56'),('overdrive_max_extraction_threads','2021-09-22 16:15:42'),('overdrive_module_add_log','2020-03-31 18:45:02'),('overdrive_module_add_settings','2021-02-12 01:49:54'),('overdrive_part_count','2020-04-30 14:33:48'),('overdrive_series_length','2024-10-15 18:40:03'),('overdrive_showLibbyPromo','2021-11-18 04:45:20'),('overdrive_usage_add_instance','2020-12-21 17:30:33'),('overdrive_useFulfillmentInterface','2021-11-16 04:58:47'),('palace_project_cancellation_url','2024-03-25 16:02:12'),('palace_project_collection','2024-04-11 17:23:35'),('palace_project_collection_name','2024-03-25 16:02:12'),('palace_project_exportLog','2024-01-05 09:20:52'),('palace_project_identifier_length','2024-01-05 09:20:53'),('palace_project_identifier_length2','2024-01-05 09:20:55'),('palace_project_permissions','2024-01-05 09:20:52'),('palace_project_restrict_scopes_by_audience','2024-04-11 17:23:35'),('palace_project_return_url','2024-03-25 16:02:12'),('palace_project_titles','2024-01-05 09:20:53'),('palace_project_title_availability','2024-04-11 17:23:35'),('palace_project_title_length','2024-03-25 16:02:12'),('palace_project_update_title_uniqueness','2024-03-25 16:02:13'),('payment_paidFrom','2021-11-16 05:33:08'),('paypal_error_email','2022-05-06 00:28:41'),('paypal_moveSettingsFromLibrary','2021-11-17 20:41:08'),('paypal_settings','2021-07-12 16:44:30'),('paypal_showPayLater','2021-11-17 19:59:38'),('pdfView','2021-07-16 16:03:44'),('permissions_bad_words','2022-04-04 16:33:39'),('permissions_community_sharing','2023-04-10 18:49:00'),('permissions_create_administer_smtp','2024-10-15 18:40:03'),('permissions_create_administer_user_agents','2024-06-25 15:05:21'),('permissions_create_events_assabet','2024-06-25 15:05:20'),('permissions_create_events_communico','2023-03-15 23:02:46'),('permissions_create_events_springshare','2022-03-23 00:46:39'),('permissions_ecommerce_deluxe','2023-03-27 09:11:11'),('permissions_ecommerce_payflow','2023-05-05 21:42:54'),('permissions_ecommerce_snappay','2024-10-15 18:40:04'),('permissions_ecommerce_square','2024-01-05 09:20:35'),('permissions_ecommerce_stripe','2024-01-05 09:20:58'),('permissions_events_facets','2024-01-05 09:20:39'),('permissions_open_archives_facets','2024-01-05 09:20:44'),('permissions_self_reg_forms','2024-01-05 09:20:49'),('permissions_view_scheduled_updates','2023-04-27 15:41:47'),('permissions_website_facets','2024-01-05 09:20:46'),('permission_hide_series','2024-03-25 16:02:14'),('pinResetRules','2022-03-01 12:54:52'),('pinterest_library_contact_links','2020-06-10 12:22:30'),('pin_reset_token','2022-01-05 16:27:08'),('placards','2019-12-03 14:45:40'),('placard_alt_text','2021-10-01 15:06:15'),('placard_languages','2021-09-08 14:55:34'),('placard_location_scope','2020-03-27 19:21:11'),('placard_timing','2020-11-30 16:59:15'),('placard_trigger_exact_match','2020-06-29 18:17:29'),('placard_updates_1','2020-03-27 19:21:11'),('plural_grouped_work_facet','2021-07-06 15:52:37'),('polaris_full_update_21_13','2021-09-30 15:57:01'),('polaris_item_identifiers','2021-09-30 15:57:01'),('populate_list_entry_titles','2021-06-08 13:55:03'),('prevent_automatic_hour_updates','2024-10-15 18:40:03'),('processes_to_stop','2024-03-25 16:02:14'),('processes_to_stop_time','2024-03-25 16:02:14'),('process_empty_grouped_works','2022-06-14 22:42:32'),('propay_accountId_to_user','2021-07-26 21:59:48'),('propay_certStr_length','2021-08-23 18:45:43'),('propay_settings','2021-07-12 16:44:30'),('propay_settings_additional_fields','2021-07-26 21:59:48'),('ptype','2019-01-28 20:59:01'),('pTypesForLibrary','2019-01-28 20:58:55'),('ptype_allowStaffViewDisplay','2022-02-21 19:09:05'),('ptype_descriptions','2021-05-03 20:49:18'),('ptype_length','2022-12-14 23:10:16'),('ptype_vdx_client_category','2022-12-19 15:25:00'),('public_lists_to_include','2019-01-28 20:58:56'),('public_lists_to_include_defaults','2019-11-18 17:53:39'),('purchase_link_tracking','2019-01-28 20:58:58'),('quipu_ecard_settings','2021-06-11 21:21:10'),('quipu_e_renew','2024-01-05 09:20:56'),('rbdigital_add_settings','2019-11-18 17:53:49'),('rbdigital_add_setting_to_availability','2020-03-27 19:21:10'),('rbdigital_add_setting_to_log','2020-03-27 19:21:08'),('rbdigital_add_setting_to_scope','2020-03-27 19:21:07'),('rbdigital_availability','2019-03-06 15:43:14'),('rbdigital_exportLog','2019-03-05 05:46:15'),('rbdigital_exportLog_update','2019-11-18 17:53:49'),('rbdigital_exportTables','2019-03-05 16:31:43'),('rbdigital_issues_tables','2020-03-27 19:21:10'),('rbdigital_issue_tracking','2020-03-27 19:21:10'),('rbdigital_lookup_patrons_by_email','2020-02-09 22:24:43'),('rbdigital_magazine_export','2019-11-18 17:53:49'),('rbdigital_module_add_log','2020-03-31 18:45:02'),('rbdigital_module_add_settings','2021-02-12 01:49:54'),('rbdigital_module_add_settings2','2021-05-06 03:22:55'),('rbdigital_scoping','2019-11-18 17:53:49'),('rbdigital_usage_add_instance','2020-12-21 17:30:04'),('readerName2','2024-01-05 09:20:55'),('readingHistory','2019-01-28 20:58:58'),('readingHistoryIsILL','2024-01-05 09:20:40'),('readingHistoryUpdate1','2019-01-28 20:58:58'),('readingHistory_deletion','2019-01-28 20:58:58'),('readingHistory_work','2019-01-28 20:58:58'),('reading_history_entry_cost_savings','2024-10-15 18:40:04'),('reading_history_updates_change_ils','2023-01-31 00:46:53'),('rebuildThemes21_03','2021-03-05 20:16:16'),('recaptcha_settings','2020-04-30 14:33:56'),('recommendations_optOut','2019-01-28 20:58:58'),('records_to_exclude_increase_length','2022-02-01 15:31:57'),('records_to_exclude_increase_length_to_400','2022-12-09 21:56:32'),('records_to_include_2017-06','2019-01-28 20:58:57'),('records_to_include_2018-03','2019-01-28 20:58:57'),('records_to_include_updates','2023-01-04 22:41:33'),('record_files_table','2020-04-30 14:33:56'),('record_grouping_log','2019-01-28 20:59:02'),('record_identifiers_to_reload','2020-02-09 22:24:43'),('record_parents','2022-10-06 14:57:01'),('record_parents_index','2022-12-19 21:52:45'),('record_suppression_no_marc','2021-07-21 22:25:50'),('redwood_user_contribution','2019-11-18 17:53:55'),('refetch_novelist_data_21_09_02','2021-08-23 18:45:42'),('regroupAllRecordsDuringNightlyIndex','2022-05-26 19:42:54'),('regroup_21_03','2021-03-05 20:16:16'),('regroup_21_07','2021-05-26 16:19:08'),('reindexLog','2019-01-28 20:59:01'),('reindexLog_1','2019-01-28 20:59:01'),('reindexLog_2','2019-01-28 20:59:01'),('reindexLog_grouping','2019-01-28 20:59:01'),('reindexLog_nightly_updates','2020-05-14 19:25:09'),('reindexLog_unique_index','2021-05-12 22:50:28'),('reloadBadWords','2022-04-04 17:16:19'),('remove2FADefaultRememberMe','2022-01-05 16:27:08'),('removeGroupedWorkSecondDateUpdatedIndex','2021-09-22 16:15:42'),('removeIslandoraTables','2021-09-01 18:32:47'),('removeProPayFromLibrary','2021-07-12 16:44:30'),('remove_bookings','2021-08-23 18:45:52'),('remove_browse_tables','2019-01-28 20:59:02'),('remove_collection_from_palace_project','2024-04-11 17:23:35'),('remove_consortial_results_in_search','2019-01-28 20:58:56'),('remove_deprecated_self_reg_columns','2024-06-25 15:05:22'),('remove_detailed_hold_notice_configuration','2022-07-05 21:44:33'),('remove_donation_form_fields_table','2024-03-25 16:02:13'),('remove_econtent_support_address','2021-09-01 18:32:47'),('remove_editorial_reviews','2019-11-18 17:53:56'),('remove_empty_MyFavorites_lists','2022-07-05 21:44:33'),('remove_grouped_work_solr_core','2022-06-14 15:52:04'),('remove_holding_branch_label','2020-01-03 19:47:11'),('remove_id_from_grouped_work_record_item_url','2022-06-14 15:52:10'),('remove_individual_marc_path','2024-06-25 15:05:20'),('remove_library_and location_boost','2019-11-18 17:53:56'),('remove_library_location_boosting','2019-11-18 17:53:39'),('remove_library_themeName','2021-05-29 22:52:59'),('remove_library_top_links','2020-08-31 17:13:32'),('remove_list_entries_for_deleted_lists','2022-07-06 22:30:42'),('remove_list_widget_list_links','2020-02-09 22:24:43'),('remove_loan_rules','2021-06-08 13:54:58'),('remove_merged_records','2020-02-09 22:24:58'),('remove_old_homeLink','2021-04-20 23:30:13'),('remove_old_payment_lines','2024-03-26 16:08:04'),('remove_old_resource_tables','2019-01-28 20:59:02'),('remove_old_user_rating_table','2020-02-09 22:24:58'),('remove_order_options','2019-01-28 20:58:56'),('remove_overdrive_api_data_needsUpdate','2019-11-18 17:53:47'),('remove_ptype_from_library_location','2021-07-26 21:59:49'),('remove_rbdigital','2021-07-17 06:39:22'),('remove_record_grouping_log','2020-02-09 22:24:58'),('remove_scope_tables','2021-07-17 23:38:41'),('remove_scope_triggers','2021-07-21 22:25:35'),('remove_showInSearchFacet','2024-10-15 18:40:04'),('remove_spelling_words','2019-11-18 17:53:56'),('remove_suppress_itemless_bibs_setting','2024-01-05 09:20:48'),('remove_titleId2_index_from_axis360_title_availability','2023-05-16 18:09:24'),('remove_unused_enrichment_and_full_record_options','2019-01-28 20:58:56'),('remove_unused_fields_23_07','2024-01-05 09:20:35'),('remove_unused_fields_23_07b','2024-01-05 09:20:35'),('remove_unused_location_options_2015_14_0','2019-01-28 20:58:56'),('remove_unused_options','2019-01-28 20:59:02'),('remove_used_triggers','2024-06-25 15:05:20'),('remove_web_builder_menu','2024-01-05 09:20:55'),('rename_availability_facet','2024-01-05 09:20:51'),('rename_axis360_permission','2024-01-05 09:20:54'),('rename_boundless_module','2024-01-05 09:20:54'),('rename_general_settings_table','2023-02-22 20:48:38'),('rename_materialreq_usage_locID_column','2023-01-12 15:36:19'),('rename_overdrive_permission','2024-01-05 09:20:55'),('rename_prospector_to_innreach2','2024-01-05 09:20:34'),('rename_prospector_to_innreach3','2024-01-05 09:20:34'),('rename_tables','2019-01-28 20:59:01'),('rename_to_collection_spotlight','2020-02-09 22:24:43'),('renew_by_ptype','2024-01-05 09:20:56'),('renew_error','2021-07-06 15:52:37'),('replacement_costs','2024-10-15 18:40:04'),('replace_arial_fonts','2024-04-11 17:23:35'),('replace_arial_fonts_2','2024-06-25 15:05:20'),('reporting_permissions','2020-09-23 22:36:33'),('reprocess_all_sideloads_22_06_04','2022-06-14 16:54:19'),('requireLogin_webResource','2022-01-05 16:27:08'),('requires_address_info','2024-03-25 16:02:13'),('resource_subject','2019-01-28 20:58:58'),('resource_update3','2019-01-28 20:58:58'),('resource_update4','2019-01-28 20:58:58'),('resource_update5','2019-01-28 20:58:58'),('resource_update6','2019-01-28 20:58:58'),('resource_update7','2019-01-28 20:58:58'),('resource_update8','2019-01-28 20:58:58'),('resource_update_table','2019-01-28 20:58:58'),('resource_update_table_2','2019-01-28 20:58:58'),('restrictLoginOfLibraryMembers','2022-04-18 16:48:25'),('restrictLoginToLibraryMembers','2022-03-15 04:54:50'),('re_enable_hoopla_module_auto_restart','2020-04-30 14:33:48'),('right_hand_sidebar','2019-01-28 20:58:56'),('roles_1','2019-01-28 20:58:56'),('roles_2','2019-01-28 20:58:56'),('rosen_levelup_settings','2020-07-30 21:13:34'),('rosen_levelup_settings_school_prefix','2020-08-27 17:51:27'),('runNightlyFullIndex','2020-05-14 19:25:09'),('run_full_update_for_palace_project_24_09','2024-10-15 18:40:03'),('saved_searches_created_default','2019-11-18 17:53:58'),('saved_search_hasNewResults','2022-07-26 18:27:38'),('saved_search_log','2022-07-26 17:18:51'),('saved_search_newTitles','2022-07-27 18:09:22'),('scheduled_update_remote_update','2023-05-05 14:22:08'),('scheduled_work_index','2020-02-09 22:24:43'),('search_increaseTitleLength','2021-11-18 04:45:20'),('search_options','2024-01-05 09:20:54'),('search_results_view_configuration_options','2019-01-28 20:58:56'),('search_sources','2019-01-28 20:58:56'),('search_sources_1','2019-01-28 20:58:56'),('search_test_description','2022-03-08 21:20:07'),('search_test_notes','2022-02-21 19:09:05'),('search_test_search_index_multiple_terms','2022-02-21 19:09:05'),('search_test_settings','2022-02-21 19:09:05'),('secondary phone number','2024-01-05 09:20:38'),('select_ILL_system','2024-01-05 09:20:51'),('selfRegistrationCustomizations','2020-06-10 12:22:30'),('selfRegistrationLocationRestrictions','2020-03-27 19:21:05'),('selfRegistrationPasswordNotes','2020-06-10 12:22:31'),('selfRegistrationUrl','2020-04-30 14:33:48'),('selfRegistrationZipCodeValidation','2020-10-30 19:03:30'),('selfreg_customization','2019-01-28 20:58:56'),('selfreg_template','2019-01-28 20:58:56'),('self_check_checkout_location','2024-04-11 17:23:35'),('self_registration_form','2024-01-05 09:20:50'),('self_registration_form_carlx','2024-10-15 18:40:03'),('self_registration_form_sierra','2024-10-15 18:40:03'),('self_registration_parent_sms','2022-10-06 14:57:01'),('self_registration_require_phone_and_email','2022-10-06 14:57:01'),('self_reg_barcode_prefix','2024-01-05 09:20:50'),('self_reg_default','2024-01-05 09:20:50'),('self_reg_form_id','2024-01-05 09:20:50'),('self_reg_form_permission','2024-01-05 09:20:50'),('self_reg_form_update','2024-03-25 16:02:17'),('self_reg_min_age','2024-03-25 16:02:16'),('self_reg_note_field_length','2024-10-15 18:40:03'),('self_reg_no_duplicate_check','2024-01-05 09:20:58'),('self_reg_sections','2024-03-25 16:02:13'),('self_reg_sections_assignment','2024-03-25 16:02:13'),('self_reg_symphony_only','2024-03-25 16:02:17'),('self_reg_tos','2024-03-25 16:02:17'),('self_reg_values_column_name','2024-10-15 18:40:03'),('sendgrid_settings','2019-11-18 17:53:58'),('session_update_1','2019-01-28 20:59:02'),('setup_default_indexing_profiles','2019-01-28 20:58:57'),('setUsePreferredNameInIlsOnUpdate','2023-02-01 16:32:49'),('set_include_econtent_and_onorder','2023-02-02 16:09:44'),('set_include_holdable_to_zero','2023-01-18 15:01:50'),('shared_content_in_greenhouse','2023-03-22 14:38:40'),('showCardExpirationDate','2021-08-23 18:45:52'),('showInSelectInterface','2021-09-01 18:32:47'),('showRelatedRecordLabels','2022-08-09 13:30:48'),('showTopOfPageButton','2021-11-03 23:21:36'),('showWhileYouWait','2020-05-14 19:25:08'),('show_catalog_options_in_profile','2019-01-28 20:58:56'),('show_cellphone_in_profile','2024-10-15 18:40:03'),('show_checkout_grid_by_format','2024-10-15 18:40:03'),('show_grouped_hold_copies_count','2019-01-28 20:58:56'),('show_in_search_facet_column','2024-10-15 18:40:03'),('show_item_notes_in_copies','2024-06-25 15:05:21'),('show_library_hours_notice_on_account_pages','2019-01-28 20:58:56'),('show_place_hold_on_unavailable','2019-01-28 20:58:56'),('show_quick_poll_results','2024-01-05 09:20:55'),('show_Refresh_Account_Button','2019-01-28 20:58:56'),('sideloads','2019-11-18 17:53:46'),('sideload_access_button_label','2021-10-08 00:07:19'),('sideload_convert_to_econtent','2024-06-25 15:05:21'),('sideload_defaults','2020-06-10 12:22:31'),('sideload_files','2020-09-23 22:36:33'),('sideload_log','2019-11-18 17:53:47'),('sideload_restrict_scopes_by_audience','2024-04-11 17:23:35'),('sideload_scope_match_and_rewrite','2019-12-11 21:32:56'),('sideload_scope_url_match_and_rewrite_embiggening','2021-04-22 01:34:03'),('sideload_scoping','2019-11-18 17:53:47'),('sideload_show_status','2021-10-13 17:18:10'),('sideload_usage_add_instance','2020-12-21 17:22:26'),('sideload_use_link_text_for_button_label','2024-06-25 15:05:21'),('sierra_exportLog','2019-01-28 20:58:57'),('sierra_exportLog_stats','2019-01-28 20:58:58'),('sierra_export_additional_fixed_fields','2020-01-03 19:47:11'),('sierra_export_field_mapping','2019-01-28 20:58:58'),('sierra_export_field_mapping_item_fields','2019-01-28 20:58:58'),('sierra_order_record_options','2023-04-10 22:54:46'),('sierra_public_note_export','2021-12-16 23:09:22'),('sierra_self_reg_patron_type','2024-10-15 18:40:04'),('slow_pages','2019-11-18 17:53:58'),('slow_page_granularity','2019-11-18 17:53:59'),('smtp_settings','2024-10-15 18:40:03'),('snappay_settings','2024-10-15 18:40:04'),('snippet_contains_analytics_cookies','2024-06-25 15:05:20'),('solrTimeoutStats','2022-02-21 19:09:05'),('sort_owned_editions_first','2022-09-10 21:14:14'),('sourceId_allow_255_char','2024-10-15 18:40:04'),('spelling_optimization','2019-01-28 20:59:01'),('split_user_fields','2024-01-05 09:20:39'),('springshare_libcal_events','2022-03-23 00:46:39'),('springshare_libcal_settings','2022-03-23 00:46:39'),('springshare_libcal_settings_multiple_calId','2022-03-23 00:55:20'),('sso_setting_add_entity_id','2022-11-02 02:59:14'),('staffSettingsAllowNegativeUserId','2020-10-30 19:03:30'),('staffSettingsTable','2019-01-28 20:58:59'),('staff_members','2020-07-22 12:49:59'),('staff_ptypes','2020-09-07 18:23:04'),('storeNYTLastUpdated','2021-07-16 16:03:44'),('storeRecordDetailsInDatabase','2021-07-11 21:04:56'),('storeRecordDetailsInSolr','2021-06-27 13:24:51'),('store_form_submissions_by_field','2024-01-05 09:20:58'),('store_grouped_work_records_items_scopes','2021-05-12 22:50:28'),('store_grouped_work_record_item_scope','2021-06-26 19:58:18'),('store_marc_in_db','2021-07-14 12:58:06'),('store_pickup_location','2021-01-16 22:58:46'),('store_place_of_publication','2024-03-25 16:02:14'),('store_scope_details_in_concatenated_fields','2021-07-17 23:38:41'),('sub-browse_categories','2019-01-28 20:59:02'),('summon_integration','2024-03-25 16:02:12'),('summon_password_length','2024-03-25 16:02:13'),('summon_record_usage','2024-03-25 16:02:11'),('summon_usage_add_instance','2024-03-25 16:02:12'),('superCatalogerRole','2020-06-10 12:22:31'),('support_connection','2022-03-03 00:31:41'),('suppressRecordsWithUrlsMatching','2021-09-08 23:42:15'),('symphony_city_state','2024-01-05 09:20:51'),('symphony_default_phone_field','2024-10-15 18:40:03'),('symphony_self_registration_profile','2022-08-30 22:03:33'),('symphony_user_category_notice_settings','2024-10-15 18:40:03'),('syndetics_data','2019-01-28 20:59:02'),('syndetics_data_update_1','2019-11-18 17:53:56'),('syndetics_settings','2020-01-03 19:47:26'),('syndetics_unbound','2021-05-06 03:22:55'),('syndetics_unbound_account_number','2021-05-26 16:19:08'),('systemVariables_libraryToUseForPayments','2021-11-18 04:14:08'),('system_messages','2020-11-30 20:23:35'),('system_messages_permissions','2020-11-30 20:24:27'),('system_message_style','2020-12-14 17:03:19'),('templates_for_grapes_web_builder','2024-10-15 18:40:03'),('test_roles_permission','2020-09-07 18:23:04'),('themes_additional_css','2020-01-08 18:33:49'),('themes_additional_fonts','2020-02-09 22:24:45'),('themes_badges','2020-08-02 16:33:58'),('themes_browse_category_colors','2020-01-09 19:54:16'),('themes_browse_category_image_size','2022-06-27 23:44:13'),('themes_browse_image_layout','2022-07-06 19:41:47'),('themes_button_colors','2020-02-09 22:24:56'),('themes_button_radius','2020-01-09 19:54:14'),('themes_button_radius2','2020-02-09 22:24:44'),('themes_capitalize_browse_categories','2020-02-09 22:24:45'),('themes_editions_button_colors','2020-08-02 14:44:38'),('themes_favicon','2019-11-18 17:53:51'),('themes_fonts','2019-11-18 17:53:53'),('themes_footer_design','2020-02-09 22:24:57'),('themes_header_buttons','2019-11-18 17:53:51'),('themes_header_colors','2019-11-18 17:53:50'),('themes_header_colors_2','2019-11-18 17:53:50'),('themes_link_color','2020-08-02 16:09:04'),('themes_link_hover_color','2020-08-12 15:04:24'),('themes_panel_body_design','2020-08-02 18:58:16'),('themes_panel_design','2020-06-19 20:20:59'),('themes_primary_colors','2019-11-18 17:53:52'),('themes_results_breadcrumbs','2020-08-12 15:04:26'),('themes_search_tools','2020-08-12 15:04:26'),('themes_secondary_colors','2019-11-18 17:53:53'),('themes_setup','2019-02-24 20:32:34'),('themes_sidebar_highlight_colors','2020-02-09 22:24:44'),('themes_tools_button_colors','2020-08-02 17:36:02'),('theme_cover_default_image','2024-01-05 09:20:36'),('theme_defaults_for_logo_and_favicon','2020-09-04 12:26:28'),('theme_explore_more_images','2024-01-05 09:20:49'),('theme_format_category_icons','2024-01-05 09:20:36'),('theme_modal_dialog','2020-09-04 20:08:55'),('theme_name_length','2019-01-28 20:58:56'),('theme_reorganize_menu','2020-09-04 15:47:26'),('third_party_registration','2024-01-05 09:20:35'),('ticket_creation','2022-03-30 22:40:45'),('ticket_trends','2024-01-05 09:20:34'),('toggle_novelist_series','2024-06-25 15:05:20'),('track_axis360_record_usage','2020-09-29 21:40:16'),('track_axis360_stats','2020-09-29 21:40:16'),('track_axis360_user_usage','2020-09-29 21:40:16'),('track_cloud_library_record_usage','2019-11-18 17:53:55'),('track_cloud_library_user_usage','2019-11-18 17:53:55'),('track_ebscohost_user_usage','2022-06-24 13:38:50'),('track_ebsco_eds_user_usage','2020-07-21 13:33:42'),('track_event_user_usage','2020-04-30 14:33:56'),('track_hoopla_record_usage','2019-11-18 17:53:48'),('track_hoopla_user_usage','2019-11-18 17:53:48'),('track_ils_record_usage','2019-11-18 17:53:45'),('track_ils_self_registrations','2020-04-30 14:33:48'),('track_ils_user_usage','2019-11-18 17:53:45'),('track_open_archive_record_usage','2019-11-18 17:53:54'),('track_open_archive_user_usage','2019-11-18 17:53:54'),('track_overdrive_record_usage','2019-11-18 17:53:48'),('track_overdrive_stats','2021-02-06 21:31:45'),('track_overdrive_user_usage','2019-11-18 17:53:47'),('track_palace_project_record_usage','2024-03-25 16:02:12'),('track_palace_project_user_usage','2024-03-25 16:02:12'),('track_pdf_downloads','2020-04-30 14:33:48'),('track_pdf_views','2020-07-08 14:56:03'),('track_rbdigital_magazine_usage','2019-11-18 17:53:49'),('track_rbdigital_record_usage','2019-11-18 17:53:49'),('track_rbdigital_user_usage','2019-11-18 17:53:49'),('track_sideload_record_usage','2019-11-18 17:53:47'),('track_sideload_user_usage','2019-11-18 17:53:47'),('track_spammy_urls_by_ip','2023-05-22 02:37:31'),('track_summon_user_usage','2024-03-25 16:02:11'),('track_supplemental_file_downloads','2020-05-14 19:25:09'),('track_website_user_usage','2019-11-18 17:53:55'),('translatable_text_blocks','2024-03-25 16:02:12'),('translations','2019-11-18 17:53:54'),('translation_case_sensitivity','2020-02-09 22:24:58'),('translation_map_regex','2019-01-28 20:58:57'),('translation_terms','2019-11-18 17:53:54'),('translation_term_case_sensitivity','2020-03-05 22:53:47'),('translation_term_default_text','2020-01-08 18:33:50'),('translation_term_increase_length','2020-07-29 19:28:26'),('translator_role','2019-11-18 17:53:54'),('treatBibOrItemHoldsAs','2021-08-23 18:45:52'),('treatLibraryUseOnlyGroupedStatusesAsAvailable','2022-04-13 13:57:12'),('treat_unknown_audience_as','2021-07-06 15:52:37'),('truncate_donation_form_fields','2023-03-02 22:15:39'),('twilio_settings','2024-01-05 09:20:37'),('two_factor_auth','2021-12-23 19:38:39'),('two_factor_auth_permission','2021-12-23 19:38:39'),('unknown_language_handling','2020-03-27 19:21:06'),('updateCatUsername','2024-01-05 09:20:48'),('updateDefaultConfiguration','2022-06-03 19:41:08'),('updateDefaultConfiguration2','2022-06-07 19:15:33'),('updateGroupedWorkFacetReadingtoAudience','2022-06-03 19:41:07'),('updateGroupedWorkFacetReadling','2022-06-03 19:41:07'),('updateThemes','2023-04-05 23:58:09'),('updateThemesFinal','2023-04-07 23:29:23'),('update_api_usage_uniqueness','2023-01-18 17:56:46'),('update_aspen_site_stats','2022-07-11 23:53:34'),('update_carlx_indexing_class','2024-01-05 09:20:43'),('update_cellphone_symphony','2024-01-05 09:20:52'),('update_collection_spotlight_number_of_titles','2024-01-05 09:20:35'),('update_cookie_management_preferences_more_options','2024-10-15 18:40:05'),('update_dates_scheduled_updates','2023-04-27 15:41:47'),('update_dates_scheduled_updates2','2023-05-03 00:41:10'),('update_default_boost_limits','2024-01-05 09:20:54'),('update_default_request_statuses','2024-10-15 18:40:04'),('update_default_request_statuses_2','2024-10-15 18:40:04'),('update_deluxe_remittance_id','2023-03-30 07:32:08'),('update_grouped_work_more_details','2019-12-19 15:29:27'),('update_indexes_for_grouped_works','2023-03-14 15:41:44'),('update_item_status','2021-08-23 18:45:52'),('update_list_entry_titles','2023-02-16 22:11:17'),('update_notification_onboarding_status','2024-01-05 09:20:36'),('update_notification_permissions','2022-10-06 14:57:02'),('update_overdrive_fulfillment','2022-01-11 18:52:41'),('update_plural_grouped_work_facet_label','2021-07-11 21:04:55'),('update_spotlight_sources','2020-06-10 12:22:31'),('update_useHomeLink','2021-04-20 23:30:13'),('update_useHomeLink_tinyint','2021-04-20 23:30:13'),('update_userAlertPreferences','2022-10-06 14:57:02'),('update_user_list_module_log_settings','2024-04-11 17:23:35'),('update_user_notification_onboard','2024-01-05 09:20:57'),('upload_list_cover_permissions','2021-05-29 19:03:49'),('username_field','2024-06-25 15:05:20'),('userPayments_addTransactionType','2021-11-19 22:02:06'),('userPaymentTransactionId','2021-11-21 17:29:02'),('userRatings1','2019-01-28 20:58:58'),('users_to_tasks','2022-12-12 15:26:49'),('user_account','2019-01-28 20:58:56'),('user_account_cache_volume_length','2021-04-08 13:50:40'),('user_account_summary_cache','2021-03-22 16:15:20'),('user_account_summary_expiration_date_extension','2021-04-08 13:50:39'),('user_account_summary_remaining_checkouts','2021-03-23 16:36:54'),('user_add_last_reading_history_update_time','2021-01-26 22:43:09'),('user_add_rbdigital_id','2019-11-18 17:53:44'),('user_add_rbdigital_username_password','2019-11-18 17:53:44'),('user_agent_tracking','2024-06-25 15:05:21'),('user_assign_role_by_ptype','2020-09-07 15:11:39'),('user_barcode_index','2024-01-05 09:20:52'),('user_browse_add_home','2022-12-09 21:56:32'),('user_cache_checkouts','2021-03-02 21:09:02'),('user_cache_holds','2021-03-02 17:55:07'),('user_checkout_cache_additional_fields','2021-03-19 14:15:56'),('user_checkout_cache_renewal_information','2021-03-19 14:16:23'),('user_circulation_cache_callnumber_length','2021-05-03 20:49:18'),('user_circulation_cache_cover_link','2021-03-29 20:48:56'),('user_circulation_cache_grouped_work','2021-03-19 14:20:46'),('user_circulation_cache_indexes','2021-03-23 16:36:54'),('user_circulation_cache_overdrive_magazines','2021-03-24 17:23:25'),('user_circulation_cache_overdrive_supplemental_materials','2021-03-26 19:02:34'),('user_cookie_preference_analytics','2024-01-05 09:20:51'),('user_cookie_preference_essential','2024-01-05 09:20:51'),('user_cost_savings','2024-10-15 18:40:04'),('user_disableAccountLinking','2022-11-18 14:44:26'),('user_display_name','2019-01-28 20:58:56'),('user_display_name_length','2019-12-11 21:42:32'),('user_events_entry','2023-04-04 23:06:13'),('user_events_entry_length','2023-04-14 16:27:42'),('user_events_entry_location_length','2023-04-19 21:50:09'),('user_events_entry_unique','2023-04-15 21:06:25'),('user_events_registrations','2023-05-03 22:54:39'),('user_hideResearchStarters','2022-03-20 19:04:14'),('user_hold_format','2021-03-26 19:02:34'),('user_hoopla_confirmation_checkout','2019-01-28 20:58:56'),('user_hoopla_confirmation_checkout_prompt','2019-11-18 17:53:43'),('user_hoopla_confirmation_checkout_prompt2','2022-03-20 19:04:14'),('user_ilsType','2019-01-28 20:58:56'),('user_languages','2019-11-18 17:53:44'),('user_last_list_used','2020-06-10 12:22:31'),('user_last_login_validation','2020-06-19 20:20:57'),('user_last_name_length','2020-03-05 22:54:04'),('user_linking','2019-01-28 20:58:56'),('user_linking_1','2019-01-28 20:58:56'),('user_linking_disable_link','2019-11-18 17:53:43'),('user_link_blocking','2019-01-28 20:58:56'),('user_list_course_reserves','2021-10-15 23:06:03'),('user_list_entry','2019-01-28 20:59:02'),('user_list_entry_add_additional_types','2020-05-18 18:16:05'),('user_list_entry_length','2023-03-27 09:11:11'),('user_list_force_reindex_20_18','2021-01-03 21:18:50'),('user_list_import_information','2021-05-03 20:49:18'),('user_list_indexing','2019-01-28 20:59:02'),('user_list_indexing_log','2020-09-09 15:44:06'),('user_list_indexing_settings','2020-09-09 18:40:16'),('user_list_searching','2020-09-09 18:05:20'),('user_list_sorting','2019-01-28 20:59:02'),('user_locked_filters','2019-11-18 17:53:45'),('user_messages','2019-11-18 17:53:44'),('user_message_actions','2019-11-18 17:53:45'),('user_message_addendum','2022-12-01 02:32:10'),('user_overdrive_auto_checkout','2019-11-18 17:53:45'),('user_overdrive_email','2019-01-28 20:58:56'),('user_password_length','2020-07-08 14:56:03'),('user_payments','2019-11-18 17:53:45'),('user_payments_cancelled','2021-07-11 21:04:57'),('user_payments_carlx','2021-02-06 21:31:44'),('user_payments_finesPaid','2021-02-06 21:31:44'),('user_payment_lines','2024-03-25 16:02:14'),('user_permissions','2020-09-03 17:44:19'),('user_permission_defaults','2020-09-03 17:44:20'),('user_phone','2019-01-28 20:58:56'),('user_phone_length','2019-11-18 17:53:43'),('user_preference_review_prompt','2019-01-28 20:58:56'),('user_preferred_library_interface','2019-01-28 20:58:56'),('user_reading_history_dates_in_past','2021-04-20 23:30:12'),('user_reading_history_index','2020-09-16 23:41:26'),('user_reading_history_index_source_id','2019-01-28 20:58:56'),('user_reading_history_work_index','2020-09-23 22:36:33'),('user_rememberHoldPickupLocation','2019-11-18 17:53:44'),('user_remove_college_major','2021-02-12 20:52:09'),('user_remove_default_created','2019-11-18 17:53:43'),('user_review_imported_from','2021-05-03 20:49:19'),('user_role_uniqueness','2022-03-20 19:04:14'),('user_secondary_library_card','2020-06-19 20:20:58'),('user_token_onboard_notifications','2024-01-05 09:20:36'),('user_track_reading_history','2019-01-28 20:58:56'),('user_update_messages','2020-07-29 17:40:19'),('user_username_increase_length','2021-03-29 20:48:55'),('use_library_themes_for_location','2023-04-15 21:06:25'),('usps_settings','2024-03-25 16:02:13'),('utf8mb4support','2021-09-30 19:35:59'),('utf8_update','2016-06-30 17:11:12'),('variables_full_index_warnings','2019-01-28 20:58:59'),('variables_lastHooplaExport','2019-01-28 20:58:57'),('variables_lastRbdigitalExport','2019-03-05 05:46:15'),('variables_offline_mode_when_offline_login_allowed','2019-01-28 20:58:59'),('variables_table','2019-01-28 20:58:59'),('variables_table_uniqueness','2019-01-28 20:58:59'),('variables_validateChecksumsFromDisk','2019-01-28 20:58:59'),('vdx_forms','2022-08-17 22:43:44'),('vdx_form_updates_locations','2022-08-29 14:08:08'),('vdx_hold_groups','2022-08-17 22:43:44'),('vdx_requests','2022-08-17 22:43:44'),('vdx_requests_2','2022-08-17 22:43:44'),('vdx_request_id','2022-08-22 18:57:13'),('vdx_settings','2022-08-17 22:43:44'),('vdx_setting_updates','2022-08-22 18:57:13'),('view_unpublished_content_permissions','2020-09-27 22:33:11'),('volume_display_order','2020-04-30 14:33:48'),('volume_increase_display_order','2020-12-04 17:08:22'),('volume_increase_field_lengths','2020-12-04 17:08:23'),('volume_information','2019-01-28 20:58:57'),('webpage_default_image','2024-01-05 09:20:37'),('website_crawlDelay','2022-05-02 19:45:05'),('website_facets','2024-01-05 09:20:47'),('website_facets_default','2024-01-05 09:20:47'),('website_indexing_tables','2019-11-18 17:53:55'),('website_index_log_num_invalid_pages','2023-01-04 19:15:06'),('website_pages_deletionReason','2021-12-17 21:36:10'),('website_record_usage','2019-11-18 17:53:55'),('website_usage_add_instance','2020-12-21 14:48:22'),('web_builder_add_cell_imageURL','2021-05-03 20:49:19'),('web_builder_add_cell_makeCellAccordion','2021-04-22 01:34:04'),('web_builder_add_frameHeight','2021-04-20 23:30:12'),('web_builder_add_settings','2021-02-12 01:49:54'),('web_builder_basic_pages','2020-07-22 12:49:58'),('web_builder_basic_page_teaser','2020-07-22 12:49:58'),('web_builder_categories_and_audiences','2020-07-22 12:50:01'),('web_builder_custom_forms','2020-07-22 12:50:01'),('web_builder_custom_form_increase_email','2024-10-15 18:40:03'),('web_builder_custom_from_submission_isRead','2021-03-31 13:24:43'),('web_builder_custom_page_categories','2020-12-04 17:08:23'),('web_builder_image_upload','2020-07-22 12:49:59'),('web_builder_image_upload_additional_sizes','2020-07-22 12:49:59'),('web_builder_last_update_timestamps','2020-07-22 12:50:00'),('web_builder_menu','2020-07-22 12:49:58'),('web_builder_menu_show_when','2020-07-22 12:49:59'),('web_builder_menu_sorting','2020-07-22 12:49:58'),('web_builder_module','2020-07-22 12:49:58'),('web_builder_module_monitoring_and_indexing','2020-11-09 19:22:45'),('web_builder_portal','2020-07-22 12:49:59'),('web_builder_portal_cell_markdown','2020-07-22 12:50:01'),('web_builder_portal_cell_source_info','2020-07-22 12:50:01'),('web_builder_portal_cell_title','2020-10-27 17:06:36'),('web_builder_portal_weights','2020-07-22 12:49:59'),('web_builder_quick_polls','2024-01-05 09:20:42'),('web_builder_remove_show_sidebar','2020-10-27 17:06:37'),('web_builder_resources','2020-07-22 12:50:00'),('web_builder_resource_access_library','2024-10-15 18:40:04'),('web_builder_resource_in_library','2020-07-22 12:50:01'),('web_builder_resource_open_in_new_tab','2021-01-03 21:18:50'),('web_builder_resource_teaser','2020-07-22 12:50:00'),('web_builder_roles','2020-10-27 17:06:36'),('web_builder_scope_by_library','2020-07-22 12:50:00'),('web_indexer_add_description_expression','2020-08-07 14:36:05'),('web_indexer_add_paths_to_exclude','2019-12-03 14:45:40'),('web_indexer_add_title_expression','2020-08-07 14:36:05'),('web_indexer_deleted_settings','2020-12-04 17:08:23'),('web_indexer_max_pages_to_index','2021-02-12 01:49:54'),('web_indexer_module_add_log','2020-03-31 18:45:02'),('web_indexer_scoping','2020-12-14 17:03:19'),('web_indexer_url_length','2021-05-18 13:12:51'),('web_resource_usage','2022-01-05 16:27:08'),('work_level_ratings','2019-01-28 20:59:02'),('work_level_tagging','2019-01-28 20:59:02'),('worldpay_settings','2021-07-12 16:44:30'),('worldpay_setting_typo','2021-07-14 12:31:50'),('xpressPay_settings','2022-04-08 21:00:43'); /*!40000 ALTER TABLE `db_update` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -1574,6 +1577,7 @@ CREATE TABLE `format_map_values` ( `appliesToItemFormat` tinyint(1) DEFAULT 1, `appliesToMatType` tinyint(1) DEFAULT 1, `appliesToFallbackFormat` tinyint(1) DEFAULT 1, + `displaySierraCheckoutGrid` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `indexingProfileId` (`indexingProfileId`,`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -1589,6 +1593,28 @@ CREATE TABLE `google_api_settings` ( `googleAnalyticsVersion` varchar(5) DEFAULT 'v3', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS grapes_templates; +CREATE TABLE `grapes_templates` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `templateName` varchar(100) NOT NULL DEFAULT ' ', + `templateContent` text NOT NULL, + `htmlData` text DEFAULT NULL, + `cssData` text DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS grapes_web_builder; +CREATE TABLE `grapes_web_builder` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL, + `urlAlias` varchar(100) DEFAULT NULL, + `teaser` varchar(512) DEFAULT NULL, + `templatesSelect` int(11) DEFAULT -1, + `templateContent` text DEFAULT NULL, + `grapesGenId` varchar(100) NOT NULL DEFAULT '', + `htmlData` text DEFAULT NULL, + `cssData` text DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS greenhouse_cache; CREATE TABLE `greenhouse_cache` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -1629,6 +1655,7 @@ CREATE TABLE `greenhouse_settings` ( `expoEASBuildWebhookKey` varchar(256) DEFAULT NULL, `sendBuildTrackerAlert` tinyint(1) DEFAULT 0, `expoEASSubmitWebhookKey` varchar(256) DEFAULT NULL, + `greenhouseSystemsAlertSlackHook` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS grouped_work; @@ -1662,7 +1689,7 @@ DROP TABLE IF EXISTS grouped_work_debug_info; CREATE TABLE `grouped_work_debug_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permanent_id` char(40) NOT NULL, - `debugInfo` text DEFAULT NULL, + `debugInfo` mediumtext DEFAULT NULL, `debugTime` int(11) DEFAULT NULL, `processed` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id`), @@ -1735,6 +1762,7 @@ CREATE TABLE `grouped_work_display_settings` ( `maxFormatBoost` int(11) DEFAULT 25, `maxHoldingsBoost` int(11) DEFAULT 25, `showItemNotes` tinyint(1) DEFAULT 1, + `formatSortingGroupId` int(11) DEFAULT 1, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -1767,6 +1795,28 @@ CREATE TABLE `grouped_work_facet_groups` ( PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS grouped_work_format_sort; +CREATE TABLE `grouped_work_format_sort` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `formatSortingGroupId` int(11) NOT NULL, + `groupingCategory` varchar(6) NOT NULL, + `format` varchar(255) NOT NULL, + `weight` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `formatSortingGroupId` (`formatSortingGroupId`,`groupingCategory`,`format`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS grouped_work_format_sort_group; +CREATE TABLE `grouped_work_format_sort_group` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `bookSortMethod` tinyint(1) DEFAULT 1, + `comicSortMethod` tinyint(1) DEFAULT 1, + `movieSortMethod` tinyint(1) DEFAULT 1, + `musicSortMethod` tinyint(1) DEFAULT 1, + `otherSortMethod` tinyint(1) DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS grouped_work_more_details; CREATE TABLE `grouped_work_more_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -2050,6 +2100,24 @@ CREATE TABLE `ils_hold_summary` ( PRIMARY KEY (`id`), UNIQUE KEY `ilsId` (`ilsId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS ils_message_type; +CREATE TABLE `ils_message_type` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `module` varchar(255) DEFAULT NULL, + `code` varchar(255) DEFAULT NULL, + `name` varchar(255) DEFAULT NULL, + `isDigest` tinyint(1) DEFAULT 0, + `locationCode` varchar(255) DEFAULT NULL, + `isEnabled` tinyint(1) DEFAULT 1, + `ilsNotificationSettingId` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS ils_notification_setting; +CREATE TABLE `ils_notification_setting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS ils_record_usage; CREATE TABLE `ils_record_usage` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -2349,6 +2417,8 @@ CREATE TABLE `indexing_profiles` ( `numMillisecondsToPauseAfterBibLookups` int(11) DEFAULT 0, `numExtractionThreads` tinyint(4) DEFAULT 10, `orderRecordStatusToTreatAsUnderConsideration` varchar(10) DEFAULT '', + `bibCallNumberFields` varchar(25) DEFAULT '099:092:082', + `replacementCostSubfield` char(1) DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -2738,6 +2808,20 @@ CREATE TABLE `library` ( `usernameField` varchar(1) NOT NULL DEFAULT 'w', `allowPatronWorkPhoneNumberUpdates` tinyint(1) DEFAULT 1, `ncrSettingId` int(11) DEFAULT -1, + `alternateLibraryCardFormMessage` mediumtext DEFAULT NULL, + `symphonyNoticeCategoryNumber` varchar(2) DEFAULT NULL, + `symphonyNoticeCategoryOptions` varchar(128) DEFAULT NULL, + `symphonyBillingNoticeCategoryNumber` varchar(2) DEFAULT NULL, + `symphonyBillingNoticeCategoryOptions` varchar(128) DEFAULT NULL, + `symphonyDefaultPhoneField` varchar(16) DEFAULT 'PHONE', + `showCellphoneInProfile` tinyint(1) DEFAULT 0, + `allowUpdatingHolidaysFromILS` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInSummon` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInEbscoEds` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInCatalogSearch` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInEbscoHost` tinyint(1) DEFAULT 1, + `snapPaySettingId` int(11) DEFAULT -1, + `enableCostSavings` tinyint(4) DEFAULT 0, PRIMARY KEY (`libraryId`), UNIQUE KEY `subdomain` (`subdomain`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -2910,6 +2994,15 @@ CREATE TABLE `library_web_builder_custom_form` ( KEY `libraryId` (`libraryId`), KEY `formId` (`formId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS library_web_builder_grapes_page; +CREATE TABLE `library_web_builder_grapes_page` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `libraryId` int(11) NOT NULL, + `grapesPageId` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `libraryId` (`libraryId`), + KEY `grapesPageId` (`grapesPageId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS library_web_builder_portal_page; CREATE TABLE `library_web_builder_portal_page` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -3079,6 +3172,13 @@ CREATE TABLE `location` ( `palaceProjectScopeId` int(11) DEFAULT -1, `languageAndDisplayInHeader` int(11) DEFAULT 1, `locationImage` varchar(100) DEFAULT NULL, + `allowUpdatingHoursFromILS` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInSummon` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInEbscoEds` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInCatalogSearch` tinyint(1) DEFAULT 1, + `displayExploreMoreBarInEbscoHost` tinyint(1) DEFAULT 1, + `statGroup` int(11) DEFAULT -1, + `circulationUsername` varchar(20) DEFAULT NULL, PRIMARY KEY (`locationId`), UNIQUE KEY `code` (`code`,`subLocation`), KEY `ValidHoldPickupBranch` (`validHoldPickupBranch`), @@ -3260,6 +3360,9 @@ CREATE TABLE `materials_request` ( `assignedTo` int(11) DEFAULT NULL, `staffComments` mediumtext DEFAULT NULL, `createdEmailSent` tinyint(1) DEFAULT 0, + `readyForHolds` tinyint(1) DEFAULT 0, + `selectedHoldCandidateId` int(11) DEFAULT 0, + `holdFailureMessage` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `status_2` (`status`), @@ -3302,6 +3405,15 @@ CREATE TABLE `materials_request_form_fields` ( UNIQUE KEY `id_UNIQUE` (`id`), KEY `libraryId` (`libraryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS materials_request_format_mapping; +CREATE TABLE `materials_request_format_mapping` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `libraryId` int(11) NOT NULL, + `catalogFormat` varchar(255) NOT NULL, + `materialsRequestFormatId` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `libraryId` (`libraryId`,`catalogFormat`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS materials_request_formats; CREATE TABLE `materials_request_formats` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -3315,6 +3427,27 @@ CREATE TABLE `materials_request_formats` ( PRIMARY KEY (`id`), KEY `libraryId` (`libraryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS materials_request_hold_candidate; +CREATE TABLE `materials_request_hold_candidate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `requestId` int(11) NOT NULL, + `source` varchar(255) NOT NULL, + `sourceId` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `requestId` (`requestId`,`source`,`sourceId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS materials_request_hold_candidate_generation_log; +CREATE TABLE `materials_request_hold_candidate_generation_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `startTime` int(11) NOT NULL, + `endTime` int(11) DEFAULT NULL, + `numRequestsChecked` int(11) DEFAULT 0, + `numRequestsWithNewSuggestions` int(11) DEFAULT 0, + `numSearchErrors` int(11) DEFAULT 0, + `notes` text DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `startTime` (`startTime`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS materials_request_status; CREATE TABLE `materials_request_status` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -3325,6 +3458,10 @@ CREATE TABLE `materials_request_status` ( `isOpen` tinyint(4) DEFAULT NULL, `isPatronCancel` tinyint(4) DEFAULT NULL, `libraryId` int(11) DEFAULT -1, + `checkForHolds` tinyint(1) DEFAULT 0, + `holdPlacedSuccessfully` tinyint(1) DEFAULT 0, + `holdFailed` tinyint(1) DEFAULT 0, + `holdNotNeeded` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), KEY `isDefault` (`isDefault`), KEY `isOpen` (`isOpen`), @@ -3581,6 +3718,7 @@ CREATE TABLE `open_archives_collection` ( `defaultCover` varchar(100) DEFAULT '', `metadataFormat` varchar(10) DEFAULT 'oai_dc', `indexAllSets` tinyint(1) DEFAULT 0, + `dateFormatting` tinyint(4) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS open_archives_export_log; @@ -3739,7 +3877,7 @@ CREATE TABLE `overdrive_api_products` ( `overdriveId` varchar(36) NOT NULL, `mediaType` varchar(50) NOT NULL, `title` varchar(512) NOT NULL, - `series` varchar(215) DEFAULT NULL, + `series` varchar(255) DEFAULT NULL, `primaryCreatorRole` varchar(50) DEFAULT NULL, `primaryCreatorName` varchar(215) DEFAULT NULL, `cover` varchar(215) DEFAULT NULL, @@ -3942,6 +4080,9 @@ CREATE TABLE `palace_project_title_availability` ( `collectionId` int(11) NOT NULL, `lastSeen` int(11) NOT NULL, `deleted` tinyint(1) DEFAULT NULL, + `borrowLink` tinytext DEFAULT NULL, + `needsHold` tinyint(4) DEFAULT 1, + `previewLink` tinytext DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `titleId` (`titleId`,`collectionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -3992,12 +4133,12 @@ CREATE TABLE `permissions` ( `description` varchar(250) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=218 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; -INSERT INTO `permissions` VALUES (1,'Administer Modules','System Administration','',0,'Allow information about Aspen Discovery Modules to be displayed and enabled or disabled.'),(2,'Administer Users','System Administration','',10,'Allows configuration of who has administration privileges within Aspen Discovery. Give to trusted users, this has security implications.'),(3,'Administer Permissions','System Administration','',15,'Allows configuration of the roles within Aspen Discovery and what each role can do. Give to trusted users, this has security implications.'),(4,'Run Database Maintenance','System Administration','',20,'Controls if the user can run database maintenance or not.'),(5,'Administer SendGrid','System Administration','',30,'Controls if the user can change SendGrid settings. This has potential security and cost implications.'),(6,'Administer System Variables','System Administration','',40,'Controls if the user can change system variables.'),(7,'View System Reports','Reporting','',0,'Controls if the user can view System Reports that show how Aspen Discovery performs and how background tasks are operating. Includes Indexing Logs and Dashboards.'),(8,'View Indexing Logs','Reporting','',10,'Controls if the user can view Indexing Logs for the ILS and eContent.'),(9,'View Dashboards','Reporting','',20,'Controls if the user can view Dashboards showing usage information.'),(10,'Administer All Themes','Theme & Layout','',0,'Allows the user to control all themes within Aspen Discovery.'),(11,'Administer Library Themes','Theme & Layout','',10,'Allows the user to control theme for their home library within Aspen Discovery.'),(12,'Administer All Layout Settings','Theme & Layout','',20,'Allows the user to view and change all layout settings within Aspen Discovery.'),(13,'Administer Library Layout Settings','Theme & Layout','',30,'Allows the user to view and change layout settings for their home library within Aspen Discovery.'),(14,'Administer All Libraries','Primary Configuration','',0,'Allows the user to control settings for all libraries within Aspen Discovery.'),(15,'Administer Home Library','Primary Configuration','',10,'Allows the user to control settings for their home library'),(16,'Administer All Locations','Primary Configuration','',20,'Allows the user to control settings for all locations.'),(17,'Administer Home Library Locations','Primary Configuration','',30,'Allows the user to control settings for all locations that are part of their home library.'),(18,'Administer Home Location','Primary Configuration','',40,'Allows the user to control settings for their home location.'),(19,'Administer IP Addresses','Primary Configuration','',50,'Allows the user to administer IP addresses for Aspen Discovery. This has potential security implications'),(20,'Administer Patron Types','Primary Configuration','',60,'Allows the user to administer how patron types in the ILS are handled within for Aspen Discovery. Give to trusted users, this has security implications.'),(21,'Administer Account Profiles','Primary Configuration','',70,'Allows the user to administer patrons are loaded from the ILS and/or the database. Give to trusted users, this has security implications.'),(22,'Block Patron Account Linking','Primary Configuration','',80,'Allows the user to prevent users from linking to other users.'),(23,'Manage Library Materials Requests','Materials Requests','',0,'Allows the user to update and process materials requests for patrons.'),(24,'Administer Materials Requests','Materials Requests','',10,'Allows the user to configure the materials requests system for their library.'),(25,'View Materials Requests Reports','Materials Requests','',20,'Allows the user to view reports about the materials requests system for their library.'),(26,'Import Materials Requests','Materials Requests','',30,'Allows the user to import materials requests from older systems. Not recommended in most cases unless an active conversion is being done.'),(27,'Administer Languages','Languages and Translations','',0,'Allows the user to control which languages are available for the Aspen Discovery interface.'),(28,'Translate Aspen','Languages and Translations','',10,'Allows the user to translate the Aspen Discovery interface.'),(29,'Manually Group and Ungroup Works','Cataloging & eContent','',0,'Allows the user to manually group and ungroup works.'),(30,'Set Grouped Work Display Information','Cataloging & eContent','',10,'Allows the user to override title, author, and series information for a grouped work.'),(31,'Force Reindexing of Records','Cataloging & eContent','',20,'Allows the user to force individual records to be indexed.'),(32,'Upload Covers','Cataloging & eContent','',30,'Allows the user to upload covers for a record.'),(33,'Upload PDFs','Cataloging & eContent','',40,'Allows the user to upload PDFs for a record.'),(34,'Upload Supplemental Files','Cataloging & eContent','',50,'Allows the user to upload supplemental for a record.'),(35,'Download MARC Records','Cataloging & eContent','',52,'Allows the user to download MARC records for individual records.'),(36,'View ILS records in native OPAC','Cataloging & eContent','',55,'Allows the user to view ILS records in the native OPAC for the ILS if available.'),(37,'View ILS records in native Staff Client','Cataloging & eContent','',56,'Allows the user to view ILS records in the staff client for the ILS if available.'),(38,'Administer Indexing Profiles','Cataloging & eContent','',60,'Allows the user to administer Indexing Profiles to define how record from the ILS are indexed in Aspen Discovery.'),(39,'Administer Translation Maps','Cataloging & eContent','',70,'Allows the user to administer how fields within the ILS are mapped to Aspen Discovery.'),(40,'Administer Loan Rules','Cataloging & eContent','',80,'Allows the user to administer load loan rules and loan rules into Aspen Discovery (Sierra & Millenium only).'),(41,'View Offline Holds Report','Cataloging & eContent','',90,'Allows the user to see any holds that were entered while the ILS was offline.'),(42,'Administer Boundless','Cataloging & eContent','Axis 360',100,'Allows the user configure Boundless integration for all libraries.'),(43,'Administer Cloud Library','Cataloging & eContent','Cloud Library',110,'Allows the user configure Cloud Library integration for all libraries.'),(44,'Administer EBSCO EDS','Cataloging & eContent','EBSCO EDS',120,'Allows the user configure EBSCO EDS integration for all libraries.'),(45,'Administer Hoopla','Cataloging & eContent','Hoopla',130,'Allows the user configure Hoopla integration for all libraries.'),(46,'Administer Libby/Sora','Cataloging & eContent','OverDrive',140,'Allows the user configure Libby/Sora integration for all libraries.'),(47,'View OverDrive Test Interface','Cataloging & eContent','OverDrive',150,'Allows the user view OverDrive API information and call OverDrive for specific records.'),(48,'Administer RBdigital','Cataloging & eContent','RBdigital',160,'Allows the user configure RBdigital integration for all libraries.'),(49,'Administer Side Loads','Cataloging & eContent','Side Loads',170,'Controls if the user can administer side loads.'),(50,'Administer All Grouped Work Display Settings','Grouped Work Display','',0,'Allows the user to view and change all grouped work display settings within Aspen Discovery.'),(51,'Administer Library Grouped Work Display Settings','Grouped Work Display','',10,'Allows the user to view and change grouped work display settings for their home library within Aspen Discovery.'),(52,'Administer All Grouped Work Facets','Grouped Work Display','',20,'Allows the user to view and change all grouped work facets within Aspen Discovery.'),(53,'Administer Library Grouped Work Facets','Grouped Work Display','',30,'Allows the user to view and change grouped work facets for their home library within Aspen Discovery.'),(54,'Administer All Browse Categories','Local Enrichment','',0,'Allows the user to view and change all browse categories within Aspen Discovery.'),(55,'Administer Library Browse Categories','Local Enrichment','',10,'Allows the user to view and change browse categories for their home library within Aspen Discovery.'),(56,'Administer All Collection Spotlights','Local Enrichment','',20,'Allows the user to view and change all collection spotlights within Aspen Discovery.'),(57,'Administer Library Collection Spotlights','Local Enrichment','',30,'Allows the user to view and change collection spotlights for their home library within Aspen Discovery.'),(58,'Administer All Placards','Local Enrichment','',40,'Allows the user to view and change all placards within Aspen Discovery.'),(59,'Administer Library Placards','Local Enrichment','',50,'Allows the user to view and change placards for their home library within Aspen Discovery.'),(60,'Moderate User Reviews','Local Enrichment','',60,'Allows the delete any user review within Aspen Discovery.'),(61,'Administer Third Party Enrichment API Keys','Third Party Enrichment','',0,'Allows the user to define connection to external enrichment systems like Content Cafe, Syndetics, Google, NoveList etc.'),(62,'Administer Wikipedia Integration','Third Party Enrichment','',10,'Allows the user to control how authors are matched to Wikipedia entries.'),(63,'View New York Times Lists','Third Party Enrichment','',20,'Allows the user to view and update lists loaded from the New York Times.'),(64,'Administer Islandora Archive','Islandora Archives','Islandora',0,'Allows the user to administer integration with an Islandora archive.'),(65,'View Archive Authorship Claims','Islandora Archives','Islandora',10,'Allows the user to view authorship claims for Islandora archive materials.'),(66,'View Library Archive Authorship Claims','Islandora Archives','Islandora',12,'Allows the user to view authorship claims for Islandora archive materials.'),(67,'View Archive Material Requests','Islandora Archives','Islandora',20,'Allows the user to view material requests for Islandora archive materials.'),(68,'View Library Archive Material Requests','Islandora Archives','Islandora',22,'Allows the user to view material requests for Islandora archive materials.'),(69,'View Islandora Archive Usage','Islandora Archives','Islandora',30,'Allows the view a report of objects in the repository by library.'),(70,'Administer Open Archives','Open Archives','Open Archives',0,'Allows the user to administer integration with Open Archives repositories for all libraries.'),(71,'Administer LibraryMarket LibraryCalendar Settings','Events','Events',10,'Allows the user to administer integration with LibraryMarket LibraryCalendar for all libraries.'),(72,'Administer Website Indexing Settings','Website Indexing','Web Indexer',0,'Allows the user to administer the indexing of websites for all libraries.'),(75,'Submit Ticket','Aspen Discovery Help','',20,'Allows the user to submit Aspen Discovery tickets.'),(76,'Administer Genealogy','Genealogy','Genealogy',0,'Allows the user to add people, marriages, and obituaries to the genealogy interface.'),(77,'Include Lists In Search Results','User Lists','',0,'Allows the user to add public lists to search results.'),(78,'Edit All Lists','User Lists','',10,'Allows the user to edit public lists created by any user.'),(79,'Masquerade as any user','Masquerade','',0,'Allows the user to masquerade as any other user including restricted patron types.'),(80,'Masquerade as unrestricted patron types','Masquerade','',10,'Allows the user to masquerade as any other user if their patron type is unrestricted.'),(81,'Masquerade as patrons with same home library','Masquerade','',20,'Allows the user to masquerade as patrons with the same home library including restricted patron types.'),(82,'Masquerade as unrestricted patrons with same home library','Masquerade','',30,'Allows the user to masquerade as patrons with the same home library if their patron type is unrestricted.'),(83,'Masquerade as patrons with same home location','Masquerade','',40,'Allows the user to masquerade as patrons with the same home location including restricted patron types.'),(84,'Masquerade as unrestricted patrons with same home location','Masquerade','',50,'Allows the user to masquerade as patrons with the same home location if their patron type is unrestricted.'),(85,'Test Roles','System Administration','',17,'Allows the user to use the test_role parameter to act as different role.'),(86,'Administer List Indexing Settings','User Lists','',0,'Allows the user to administer list indexing settings.'),(87,'View Location Holds Reports','Circulation Reports','',0,'Allows the user to view lists of holds to be pulled for their home location (CARL.X) only.'),(88,'View All Holds Reports','Circulation Reports','',10,'Allows the user to view lists of holds to be pulled for any location (CARL.X) only.'),(89,'View Location Student Reports','Circulation Reports','',20,'Allows the user to view barcode and checkout reports for their home location (CARL.X) only.'),(90,'View All Student Reports','Circulation Reports','',30,'Allows the user to view barcode and checkout reports for any location (CARL.X) only.'),(91,'View Unpublished Content','Content Builder','',0,'Allows the user to view unpublished menu items and content.'),(92,'Administer All JavaScript Snippets','Local Enrichment','',70,'Allows the user to define JavaScript Snippets to be added to the site. This permission has security implications.'),(93,'Administer Library JavaScript Snippets','Local Enrichment','',71,'Allows the user to define JavaScript Snippets to be added to the site for their library. This permission has security implications.'),(94,'Administer Host Information','System Administration','',50,'Allows the user to change information about the hosts used for Aspen Discovery.'),(95,'Administer All Menus','Web Builder','Web Builder',0,'Allows the user to define the menu for all libraries.'),(96,'Administer Library Menus','Web Builder','Web Builder',1,'Allows the user to define the menu for their home library.'),(97,'Administer All Basic Pages','Web Builder','Web Builder',10,'Allows the user to define basic pages for all libraries.'),(98,'Administer Library Basic Pages','Web Builder','Web Builder',11,'Allows the user to define basic pages for their home library.'),(99,'Administer All Custom Pages','Web Builder','Web Builder',20,'Allows the user to define custom pages for all libraries.'),(100,'Administer Library Custom Pages','Web Builder','Web Builder',21,'Allows the user to define custom pages for their home library.'),(101,'Administer All Custom Forms','Web Builder','Web Builder',30,'Allows the user to define custom forms for all libraries.'),(102,'Administer Library Custom Forms','Web Builder','Web Builder',31,'Allows the user to define custom forms for their home library.'),(103,'Administer All Web Resources','Web Builder','Web Builder',40,'Allows the user to add web resources for all libraries.'),(104,'Administer Library Web Resources','Web Builder','Web Builder',41,'Allows the user to add web resources for their home library.'),(105,'Administer All Staff Members','Web Builder','Web Builder',50,'Allows the user to add staff members for all libraries.'),(106,'Administer Library Staff Members','Web Builder','Web Builder',51,'Allows the user to add staff members for their home library.'),(107,'Administer All Web Content','Web Builder','Web Builder',60,'Allows the user to add images, pdfs, and videos.'),(108,'Administer All Web Categories','Web Builder','Web Builder',70,'Allows the user to define audiences and categories for content.'),(109,'Administer All System Messages','Local Enrichment','',70,'Allows the user to define system messages for all libraries within Aspen Discovery.'),(110,'Administer Library System Messages','Local Enrichment','',80,'Allows the user to define system messages for their library within Aspen Discovery.'),(111,'Administer Amazon SES','System Administration','',29,'Controls if the user can change Amazon SES settings. This has potential security and cost implications.'),(113,'Upload List Covers','User Lists','',1,'Allows users to upload covers for a list.'),(115,'Library Domain Settings','Primary Configuration - Library Fields','',1,'Configure Library fields related to URLs and base configuration to access Aspen.'),(116,'Library Theme Configuration','Primary Configuration - Library Fields','',3,'Configure Library fields related to how theme display is configured for the library.'),(117,'Library Contact Settings','Primary Configuration - Library Fields','',6,'Configure Library fields related to contact information for the library.'),(118,'Library ILS Connection','Primary Configuration - Library Fields','',9,'Configure Library fields related to how Aspen connects to the ILS and settings that depend on how the ILS is configured.'),(119,'Library ILS Options','Primary Configuration - Library Fields','',12,'Configure Library fields related to how Aspen interacts with the ILS.'),(120,'Library Registration','Primary Configuration - Library Fields','',15,'Configure Library fields related to how Self Registration and Third Party Registration is configured in Aspen.'),(121,'Library eCommerce Options','Primary Configuration - Library Fields','',18,'Configure Library fields related to how eCommerce is configured in Aspen.'),(122,'Library Catalog Options','Primary Configuration - Library Fields','',21,'Configure Library fields related to how Catalog results and searching is configured in Aspen.'),(123,'Library Browse Category Options','Primary Configuration - Library Fields','',24,'Configure Library fields related to how browse categories are configured in Aspen.'),(124,'Library Materials Request Options','Primary Configuration - Library Fields','',27,'Configure Library fields related to how materials request is configured in Aspen.'),(125,'Library ILL Options','Primary Configuration - Library Fields','',30,'Configure Library fields related to how ill is configured in Aspen.'),(126,'Library Records included in Catalog','Primary Configuration - Library Fields','',33,'Configure Library fields related to what materials (physical and eContent) are included in the Aspen Catalog.'),(127,'Library Genealogy Content','Primary Configuration - Library Fields','',36,'Configure Library fields related to genealogy content.'),(128,'Library Islandora Archive Options','Primary Configuration - Library Fields','',39,'Configure Library fields related to Islandora based archive.'),(129,'Library Archive Options','Primary Configuration - Library Fields','',42,'Configure Library fields related to open archives content.'),(130,'Library Web Builder Options','Primary Configuration - Library Fields','',45,'Configure Library fields related to web builder content.'),(131,'Library EDS Options','Primary Configuration - Library Fields','',48,'Configure Library fields related to EDS content.'),(132,'Library Holidays','Primary Configuration - Library Fields','',51,'Configure Library holidays.'),(133,'Library Menu','Primary Configuration - Library Fields','',42,'Configure Library menu.'),(134,'Location Domain Settings','Primary Configuration - Location Fields','',1,'Configure Location fields related to URLs and base configuration to access Aspen.'),(135,'Location Theme Configuration','Primary Configuration - Location Fields','',3,'Configure Location fields related to how theme display is configured for the library.'),(136,'Location Address and Hours Settings','Primary Configuration - Location Fields','',6,'Configure Location fields related to the address and hours of operation.'),(137,'Location ILS Connection','Primary Configuration - Location Fields','',9,'Configure Location fields related to how Aspen connects to the ILS and settings that depend on how the ILS is configured.'),(138,'Location ILS Options','Primary Configuration - Location Fields','',12,'Configure Location fields related to how Aspen interacts with the ILS.'),(139,'Location Catalog Options','Primary Configuration - Location Fields','',15,'Configure Location fields related to how Catalog results and searching is configured in Aspen.'),(140,'Location Browse Category Options','Primary Configuration - Location Fields','',18,'Configure Location fields related to how Catalog results and searching is configured in Aspen.'),(141,'Location Records included in Catalog','Primary Configuration - Location Fields','',21,'Configure Location fields related to what materials (physical and eContent) are included in the Aspen Catalog.'),(142,'Administer Comprise','eCommerce','',10,'Controls if the user can change Comprise settings. This has potential security and cost implications.'),(143,'Administer ProPay','eCommerce','',10,'Controls if the user can change ProPay settings. This has potential security and cost implications.'),(144,'Administer PayPal','eCommerce','',10,'Controls if the user can change PayPal settings. This has potential security and cost implications.'),(145,'Administer WorldPay','eCommerce','',10,'Controls if the user can change WorldPay settings. This has potential security and cost implications.'),(146,'View eCommerce Reports for All Libraries','eCommerce','',5,'Allows the user to view eCommerce reports for all libraries.'),(147,'Edit Library Placards','Local Enrichment','',55,'Allows the user to edit, but not create placards for their library.'),(148,'Administer Donations','eCommerce','',10,'Controls if the user can change Donations settings. This has potential security and cost implications.'),(149,'Administer Course Reserves','Course Reserves','',10,'Controls if the user can change Course Reserve settings.'),(150,'View Donations Reports for All Libraries','eCommerce','',7,'Allows the user to view donations reports for all libraries.'),(151,'Administer Curbside Pickup','Curbside Pickup','',10,'Controls if the user can change Curbside Pickup settings.'),(152,'Administer Two-Factor Authentication','Primary Configuration','',90,'Controls if the user can change Two-Factor Authentication settings. This has potential security and cost implications.'),(153,'Administer Aspen LiDA Settings','Aspen LiDA','Aspen LiDA',10,'Controls if the user can change Aspen LiDA settings.'),(154,'Administer Grouped Work Tests','Cataloging & eContent','',200,'Controls if the user can define and access tests of Grouped Work searches.'),(155,'Administer Request Tracker Connection','Aspen Discovery Support','',10,'Allows configuration of connection to the support system.'),(156,'View Active Tickets','Aspen Discovery Support','',20,'Allows display of active tickets within the support system.'),(157,'Set Development Priorities','Aspen Discovery Support','',30,'Allows setting of priorities for development.'),(158,'Administer Springshare LibCal Settings','Events','Events',20,'Allows the user to administer integration with Springshare LibCal for all libraries.'),(159,'Administer Bad Words','Local Enrichment','',65,'Allows the user to administer bad words list.'),(160,'Administer Xpress-pay','eCommerce','',10,'Controls if the user can change Xpress-pay settings. This has potential security and cost implications.'),(161,'Administer EBSCOhost Settings','Cataloging & eContent','EBSCOhost',20,'Allows the user to administer integration with EBSCOhost'),(162,'Administer VDX Hold Groups','ILL Integration','',15,'Allows the user to define Hold Groups for Interlibrary Loans with VDX.'),(163,'Administer VDX Settings','ILL Integration','',10,'Allows the user to define settings for Interlibrary Loans with VDX.'),(164,'Administer All VDX Forms','ILL Integration','',20,'Allows the user to define administer all VDX Forms.'),(165,'Administer Library VDX Forms','ILL Integration','',22,'Allows the user to define administer VDX Forms for their library.'),(166,'View Notifications Reports','Aspen LiDA','Aspen LiDA',6,'Controls if the user can view the Notifications Report.'),(167,'Administer ACI Speedpay','eCommerce','',10,'Controls if the user can change ACI Speedpay settings. This has potential security and cost implications.'),(168,'Hide Metadata','Cataloging & eContent','',85,'Controls if the user can hide metadata like Subjects and Series from facets and display information.'),(169,'Send Notifications to All Libraries','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from all libraries'),(170,'Batch Delete','System Administration','',6,'Controls if the user is able to batch delete.'),(171,'Send Notifications to Home Library','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from their home library.'),(172,'Send Notifications to Home Location','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from their home location.'),(173,'Send Notifications to Home Library Locations','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users for all locations that are part of their home library.'),(174,'Send Notifications to All Locations','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from all locations.'),(175,'Administer Single Sign-on','Primary Configuration','',6,'Controls if the user can change single sign-on (SSO) settings.This has potential security implications.'),(176,'Administer InvoiceCloud','eCommerce','',10,'Controls if the user can change InvoiceCloud settings. This has potential security and cost implications.'),(177,'Administer Communico Settings','Events','Events',20,'Allows the user to administer integration with Communico for all libraries.'),(178,'Administer Certified Payments by Deluxe','eCommerce','',10,'Controls if the user can change Certified Payments by Deluxe settings. This has potential security and cost implications.'),(179,'Share Content with Community','Community Sharing','',10,'Controls if the user can share content with other members of the Aspen Discovery Community they are connected with.'),(180,'Import Content from Community','Community Sharing','',20,'Controls if the user can import content created by other members of the Aspen Discovery Community they are connected with.'),(181,'View Scheduled Updates','System Administration','',10,'Controls if the user can view scheduled updates for Aspen Discovery.'),(182,'Administer PayPal Payflow','eCommerce','',10,'Controls if the user can change PayPal Payflow settings. This has potential security and cost implications.'),(183,'Administer Selected Browse Category Groups','Local Enrichment','',15,'Allows the user to view and edit only the Browse Category Groups they are assigned to.'),(184,'Administer Square','eCommerce','',10,'Controls if the user can change Square settings. This has potential security and cost implications.'),(185,'View Location Collection Reports','Circulation Reports','',40,'Allows the user to view collection reports for their home location (CARL.X) only.'),(186,'View All Collection Reports','Circulation Reports','',50,'Allows the user to view collection reports for any location (CARL.X) only.'),(187,'Administer Twilio','System Administration','',34,'Controls if the user can change Twilio settings. This has potential security and cost implications.'),(188,'Administer Aspen LiDA Self-Check Settings','Aspen LiDA','Aspen LiDA',10,'Controls if the user can change Aspen LiDA Self-Check settings.'),(189,'Administer Events Facet Settings','Events','Events',20,'Allows the user to alter events facets for all libraries.'),(190,'Administer All Quick Polls','Web Builder','Web Builder',45,'Allows the user to administer polls for all libraries.'),(191,'Administer Library Quick Polls','Web Builder','Web Builder',46,'Allows the user to administer polls for their home library.'),(192,'Lock Administration Fields','System Administration','',25,'Allows the user to lock administration fields and change locked fields.'),(193,'Administer All Open Archives Facet Settings','Open Archives','Open Archives',0,'Allows the user to alter Open Archives facets for all libraries.'),(194,'Administer Library Open Archives Facet Settings','Open Archives','Open Archives',0,'Allows the user to alter Open Archives facets for their library.'),(195,'Administer All Website Facet Settings','Website Indexing','Web Indexer',0,'Allows the user to alter website facets for all libraries.'),(196,'Administer Library Website Facet Settings','Website Indexing','Web Indexer',0,'Allows the user to alter website facets for their library.'),(197,'View eCommerce Reports for Home Library','eCommerce','',6,'Allows the user to view eCommerce reports for their home library'),(198,'View Donations Reports for Home Library','eCommerce','',8,'Allows the user to view donations reports for their home library'),(199,'Run Optional Updates','System Administration','',22,'Allows the user to apply optional updates to their system.'),(200,'Administer Self Registration Forms','Cataloging & eContent','',20,'Allows the user to alter custom self registration forms for all libraries.'),(201,'Administer All Email Templates','Email','',10,'Allows the user to edit all email templates in the system.'),(202,'Administer Library Email Templates','Email','',20,'Allows the user to edit email templates for their library.'),(203,'Administer Palace Project','Cataloging & eContent','Palace Project',155,'Allows the user configure Palace Project integration for all libraries.'),(204,'Administer Stripe','eCommerce','',10,'Controls if the user can change Stripe settings. This has potential security and cost implications.'),(205,'Administer Assabet Settings','Events','Events',20,'Allows the user to administer integration with Assabet for all libraries.'),(206,'Administer User Agents','Primary Configuration','',55,'Allows the user to administer User Agents for Aspen Discovery.'),(207,'Administer NCR','eCommerce','',10,'Controls if the user can change NCR settings. This has potential security and cost implications.'); +INSERT INTO `permissions` VALUES (1,'Administer Modules','System Administration','',0,'Allow information about Aspen Discovery Modules to be displayed and enabled or disabled.'),(2,'Administer Users','System Administration','',10,'Allows configuration of who has administration privileges within Aspen Discovery. Give to trusted users, this has security implications.'),(3,'Administer Permissions','System Administration','',15,'Allows configuration of the roles within Aspen Discovery and what each role can do. Give to trusted users, this has security implications.'),(4,'Run Database Maintenance','System Administration','',20,'Controls if the user can run database maintenance or not.'),(5,'Administer SendGrid','System Administration','',30,'Controls if the user can change SendGrid settings. This has potential security and cost implications.'),(6,'Administer System Variables','System Administration','',40,'Controls if the user can change system variables.'),(7,'View System Reports','Reporting','',0,'Controls if the user can view System Reports that show how Aspen Discovery performs and how background tasks are operating. Includes Indexing Logs and Dashboards.'),(8,'View Indexing Logs','Reporting','',10,'Controls if the user can view Indexing Logs for the ILS and eContent.'),(9,'View Dashboards','Reporting','',20,'Controls if the user can view Dashboards showing usage information.'),(10,'Administer All Themes','Theme & Layout','',0,'Allows the user to control all themes within Aspen Discovery.'),(11,'Administer Library Themes','Theme & Layout','',10,'Allows the user to control theme for their home library within Aspen Discovery.'),(12,'Administer All Layout Settings','Theme & Layout','',20,'Allows the user to view and change all layout settings within Aspen Discovery.'),(13,'Administer Library Layout Settings','Theme & Layout','',30,'Allows the user to view and change layout settings for their home library within Aspen Discovery.'),(14,'Administer All Libraries','Primary Configuration','',0,'Allows the user to control settings for all libraries within Aspen Discovery.'),(15,'Administer Home Library','Primary Configuration','',10,'Allows the user to control settings for their home library'),(16,'Administer All Locations','Primary Configuration','',20,'Allows the user to control settings for all locations.'),(17,'Administer Home Library Locations','Primary Configuration','',30,'Allows the user to control settings for all locations that are part of their home library.'),(18,'Administer Home Location','Primary Configuration','',40,'Allows the user to control settings for their home location.'),(19,'Administer IP Addresses','Primary Configuration','',50,'Allows the user to administer IP addresses for Aspen Discovery. This has potential security implications'),(20,'Administer Patron Types','Primary Configuration','',60,'Allows the user to administer how patron types in the ILS are handled within for Aspen Discovery. Give to trusted users, this has security implications.'),(21,'Administer Account Profiles','Primary Configuration','',70,'Allows the user to administer patrons are loaded from the ILS and/or the database. Give to trusted users, this has security implications.'),(22,'Block Patron Account Linking','Primary Configuration','',80,'Allows the user to prevent users from linking to other users.'),(23,'Manage Library Materials Requests','Materials Requests','',0,'Allows the user to update and process materials requests for patrons.'),(24,'Administer Materials Requests','Materials Requests','',10,'Allows the user to configure the materials requests system for their library.'),(25,'View Materials Requests Reports','Materials Requests','',20,'Allows the user to view reports about the materials requests system for their library.'),(26,'Import Materials Requests','Materials Requests','',30,'Allows the user to import materials requests from older systems. Not recommended in most cases unless an active conversion is being done.'),(27,'Administer Languages','Languages and Translations','',0,'Allows the user to control which languages are available for the Aspen Discovery interface.'),(28,'Translate Aspen','Languages and Translations','',10,'Allows the user to translate the Aspen Discovery interface.'),(29,'Manually Group and Ungroup Works','Cataloging & eContent','',0,'Allows the user to manually group and ungroup works.'),(30,'Set Grouped Work Display Information','Cataloging & eContent','',10,'Allows the user to override title, author, and series information for a grouped work.'),(31,'Force Reindexing of Records','Cataloging & eContent','',20,'Allows the user to force individual records to be indexed.'),(32,'Upload Covers','Cataloging & eContent','',30,'Allows the user to upload covers for a record.'),(33,'Upload PDFs','Cataloging & eContent','',40,'Allows the user to upload PDFs for a record.'),(34,'Upload Supplemental Files','Cataloging & eContent','',50,'Allows the user to upload supplemental for a record.'),(35,'Download MARC Records','Cataloging & eContent','',52,'Allows the user to download MARC records for individual records.'),(36,'View ILS records in native OPAC','Cataloging & eContent','',55,'Allows the user to view ILS records in the native OPAC for the ILS if available.'),(37,'View ILS records in native Staff Client','Cataloging & eContent','',56,'Allows the user to view ILS records in the staff client for the ILS if available.'),(38,'Administer Indexing Profiles','Cataloging & eContent','',60,'Allows the user to administer Indexing Profiles to define how record from the ILS are indexed in Aspen Discovery.'),(39,'Administer Translation Maps','Cataloging & eContent','',70,'Allows the user to administer how fields within the ILS are mapped to Aspen Discovery.'),(40,'Administer Loan Rules','Cataloging & eContent','',80,'Allows the user to administer load loan rules and loan rules into Aspen Discovery (Sierra & Millenium only).'),(41,'View Offline Holds Report','Cataloging & eContent','',90,'Allows the user to see any holds that were entered while the ILS was offline.'),(42,'Administer Boundless','Cataloging & eContent','Axis 360',100,'Allows the user configure Boundless integration for all libraries.'),(43,'Administer Cloud Library','Cataloging & eContent','Cloud Library',110,'Allows the user configure Cloud Library integration for all libraries.'),(44,'Administer EBSCO EDS','Cataloging & eContent','EBSCO EDS',120,'Allows the user configure EBSCO EDS integration for all libraries.'),(45,'Administer Hoopla','Cataloging & eContent','Hoopla',130,'Allows the user configure Hoopla integration for all libraries.'),(46,'Administer Libby/Sora','Cataloging & eContent','OverDrive',140,'Allows the user configure Libby/Sora integration for all libraries.'),(47,'View OverDrive Test Interface','Cataloging & eContent','OverDrive',150,'Allows the user view OverDrive API information and call OverDrive for specific records.'),(48,'Administer RBdigital','Cataloging & eContent','RBdigital',160,'Allows the user configure RBdigital integration for all libraries.'),(49,'Administer Side Loads','Cataloging & eContent','Side Loads',170,'Controls if the user can administer side loads.'),(50,'Administer All Grouped Work Display Settings','Grouped Work Display','',0,'Allows the user to view and change all grouped work display settings within Aspen Discovery.'),(51,'Administer Library Grouped Work Display Settings','Grouped Work Display','',10,'Allows the user to view and change grouped work display settings for their home library within Aspen Discovery.'),(52,'Administer All Grouped Work Facets','Grouped Work Display','',20,'Allows the user to view and change all grouped work facets within Aspen Discovery.'),(53,'Administer Library Grouped Work Facets','Grouped Work Display','',30,'Allows the user to view and change grouped work facets for their home library within Aspen Discovery.'),(54,'Administer All Browse Categories','Local Enrichment','',0,'Allows the user to view and change all browse categories within Aspen Discovery.'),(55,'Administer Library Browse Categories','Local Enrichment','',10,'Allows the user to view and change browse categories for their home library within Aspen Discovery.'),(56,'Administer All Collection Spotlights','Local Enrichment','',20,'Allows the user to view and change all collection spotlights within Aspen Discovery.'),(57,'Administer Library Collection Spotlights','Local Enrichment','',30,'Allows the user to view and change collection spotlights for their home library within Aspen Discovery.'),(58,'Administer All Placards','Local Enrichment','',40,'Allows the user to view and change all placards within Aspen Discovery.'),(59,'Administer Library Placards','Local Enrichment','',50,'Allows the user to view and change placards for their home library within Aspen Discovery.'),(60,'Moderate User Reviews','Local Enrichment','',60,'Allows the delete any user review within Aspen Discovery.'),(61,'Administer Third Party Enrichment API Keys','Third Party Enrichment','',0,'Allows the user to define connection to external enrichment systems like Content Cafe, Syndetics, Google, NoveList etc.'),(62,'Administer Wikipedia Integration','Third Party Enrichment','',10,'Allows the user to control how authors are matched to Wikipedia entries.'),(63,'View New York Times Lists','Third Party Enrichment','',20,'Allows the user to view and update lists loaded from the New York Times.'),(64,'Administer Islandora Archive','Islandora Archives','Islandora',0,'Allows the user to administer integration with an Islandora archive.'),(65,'View Archive Authorship Claims','Islandora Archives','Islandora',10,'Allows the user to view authorship claims for Islandora archive materials.'),(66,'View Library Archive Authorship Claims','Islandora Archives','Islandora',12,'Allows the user to view authorship claims for Islandora archive materials.'),(67,'View Archive Material Requests','Islandora Archives','Islandora',20,'Allows the user to view material requests for Islandora archive materials.'),(68,'View Library Archive Material Requests','Islandora Archives','Islandora',22,'Allows the user to view material requests for Islandora archive materials.'),(69,'View Islandora Archive Usage','Islandora Archives','Islandora',30,'Allows the view a report of objects in the repository by library.'),(70,'Administer Open Archives','Open Archives','Open Archives',0,'Allows the user to administer integration with Open Archives repositories for all libraries.'),(71,'Administer LibraryMarket LibraryCalendar Settings','Events','Events',10,'Allows the user to administer integration with LibraryMarket LibraryCalendar for all libraries.'),(72,'Administer Website Indexing Settings','Website Indexing','Web Indexer',0,'Allows the user to administer the indexing of websites for all libraries.'),(75,'Submit Ticket','Aspen Discovery Help','',20,'Allows the user to submit Aspen Discovery tickets.'),(76,'Administer Genealogy','Genealogy','Genealogy',0,'Allows the user to add people, marriages, and obituaries to the genealogy interface.'),(77,'Include Lists In Search Results','User Lists','',0,'Allows the user to add public lists to search results.'),(78,'Edit All Lists','User Lists','',10,'Allows the user to edit public lists created by any user.'),(79,'Masquerade as any user','Masquerade','',0,'Allows the user to masquerade as any other user including restricted patron types.'),(80,'Masquerade as unrestricted patron types','Masquerade','',10,'Allows the user to masquerade as any other user if their patron type is unrestricted.'),(81,'Masquerade as patrons with same home library','Masquerade','',20,'Allows the user to masquerade as patrons with the same home library including restricted patron types.'),(82,'Masquerade as unrestricted patrons with same home library','Masquerade','',30,'Allows the user to masquerade as patrons with the same home library if their patron type is unrestricted.'),(83,'Masquerade as patrons with same home location','Masquerade','',40,'Allows the user to masquerade as patrons with the same home location including restricted patron types.'),(84,'Masquerade as unrestricted patrons with same home location','Masquerade','',50,'Allows the user to masquerade as patrons with the same home location if their patron type is unrestricted.'),(85,'Test Roles','System Administration','',17,'Allows the user to use the test_role parameter to act as different role.'),(86,'Administer List Indexing Settings','User Lists','',0,'Allows the user to administer list indexing settings.'),(87,'View Location Holds Reports','Circulation Reports','',0,'Allows the user to view lists of holds to be pulled for their home location (CARL.X) only.'),(88,'View All Holds Reports','Circulation Reports','',10,'Allows the user to view lists of holds to be pulled for any location (CARL.X) only.'),(89,'View Location Student Reports','Circulation Reports','',20,'Allows the user to view barcode and checkout reports for their home location (CARL.X) only.'),(90,'View All Student Reports','Circulation Reports','',30,'Allows the user to view barcode and checkout reports for any location (CARL.X) only.'),(91,'View Unpublished Content','Content Builder','',0,'Allows the user to view unpublished menu items and content.'),(92,'Administer All JavaScript Snippets','Local Enrichment','',70,'Allows the user to define JavaScript Snippets to be added to the site. This permission has security implications.'),(93,'Administer Library JavaScript Snippets','Local Enrichment','',71,'Allows the user to define JavaScript Snippets to be added to the site for their library. This permission has security implications.'),(94,'Administer Host Information','System Administration','',50,'Allows the user to change information about the hosts used for Aspen Discovery.'),(95,'Administer All Menus','Web Builder','Web Builder',0,'Allows the user to define the menu for all libraries.'),(96,'Administer Library Menus','Web Builder','Web Builder',1,'Allows the user to define the menu for their home library.'),(97,'Administer All Basic Pages','Web Builder','Web Builder',10,'Allows the user to define basic pages for all libraries.'),(98,'Administer Library Basic Pages','Web Builder','Web Builder',11,'Allows the user to define basic pages for their home library.'),(99,'Administer All Custom Pages','Web Builder','Web Builder',20,'Allows the user to define custom pages for all libraries.'),(100,'Administer Library Custom Pages','Web Builder','Web Builder',21,'Allows the user to define custom pages for their home library.'),(101,'Administer All Custom Forms','Web Builder','Web Builder',30,'Allows the user to define custom forms for all libraries.'),(102,'Administer Library Custom Forms','Web Builder','Web Builder',31,'Allows the user to define custom forms for their home library.'),(103,'Administer All Web Resources','Web Builder','Web Builder',40,'Allows the user to add web resources for all libraries.'),(104,'Administer Library Web Resources','Web Builder','Web Builder',41,'Allows the user to add web resources for their home library.'),(105,'Administer All Staff Members','Web Builder','Web Builder',50,'Allows the user to add staff members for all libraries.'),(106,'Administer Library Staff Members','Web Builder','Web Builder',51,'Allows the user to add staff members for their home library.'),(107,'Administer All Web Content','Web Builder','Web Builder',60,'Allows the user to add images, pdfs, and videos.'),(108,'Administer All Web Categories','Web Builder','Web Builder',70,'Allows the user to define audiences and categories for content.'),(109,'Administer All System Messages','Local Enrichment','',70,'Allows the user to define system messages for all libraries within Aspen Discovery.'),(110,'Administer Library System Messages','Local Enrichment','',80,'Allows the user to define system messages for their library within Aspen Discovery.'),(111,'Administer Amazon SES','System Administration','',29,'Controls if the user can change Amazon SES settings. This has potential security and cost implications.'),(113,'Upload List Covers','User Lists','',1,'Allows users to upload covers for a list.'),(115,'Library Domain Settings','Primary Configuration - Library Fields','',1,'Configure Library fields related to URLs and base configuration to access Aspen.'),(116,'Library Theme Configuration','Primary Configuration - Library Fields','',3,'Configure Library fields related to how theme display is configured for the library.'),(117,'Library Contact Settings','Primary Configuration - Library Fields','',6,'Configure Library fields related to contact information for the library.'),(118,'Library ILS Connection','Primary Configuration - Library Fields','',9,'Configure Library fields related to how Aspen connects to the ILS and settings that depend on how the ILS is configured.'),(119,'Library ILS Options','Primary Configuration - Library Fields','',12,'Configure Library fields related to how Aspen interacts with the ILS.'),(120,'Library Registration','Primary Configuration - Library Fields','',15,'Configure Library fields related to how Self Registration and Third Party Registration is configured in Aspen.'),(121,'Library eCommerce Options','Primary Configuration - Library Fields','',18,'Configure Library fields related to how eCommerce is configured in Aspen.'),(122,'Library Catalog Options','Primary Configuration - Library Fields','',21,'Configure Library fields related to how Catalog results and searching is configured in Aspen.'),(123,'Library Browse Category Options','Primary Configuration - Library Fields','',24,'Configure Library fields related to how browse categories are configured in Aspen.'),(124,'Library Materials Request Options','Primary Configuration - Library Fields','',27,'Configure Library fields related to how materials request is configured in Aspen.'),(125,'Library ILL Options','Primary Configuration - Library Fields','',30,'Configure Library fields related to how ill is configured in Aspen.'),(126,'Library Records included in Catalog','Primary Configuration - Library Fields','',33,'Configure Library fields related to what materials (physical and eContent) are included in the Aspen Catalog.'),(127,'Library Genealogy Content','Primary Configuration - Library Fields','',36,'Configure Library fields related to genealogy content.'),(128,'Library Islandora Archive Options','Primary Configuration - Library Fields','',39,'Configure Library fields related to Islandora based archive.'),(129,'Library Archive Options','Primary Configuration - Library Fields','',42,'Configure Library fields related to open archives content.'),(130,'Library Web Builder Options','Primary Configuration - Library Fields','',45,'Configure Library fields related to web builder content.'),(131,'Library EDS Options','Primary Configuration - Library Fields','',48,'Configure Library fields related to EDS content.'),(132,'Library Holidays','Primary Configuration - Library Fields','',51,'Configure Library holidays.'),(133,'Library Menu','Primary Configuration - Library Fields','',42,'Configure Library menu.'),(134,'Location Domain Settings','Primary Configuration - Location Fields','',1,'Configure Location fields related to URLs and base configuration to access Aspen.'),(135,'Location Theme Configuration','Primary Configuration - Location Fields','',3,'Configure Location fields related to how theme display is configured for the library.'),(136,'Location Address and Hours Settings','Primary Configuration - Location Fields','',6,'Configure Location fields related to the address and hours of operation.'),(137,'Location ILS Connection','Primary Configuration - Location Fields','',9,'Configure Location fields related to how Aspen connects to the ILS and settings that depend on how the ILS is configured.'),(138,'Location ILS Options','Primary Configuration - Location Fields','',12,'Configure Location fields related to how Aspen interacts with the ILS.'),(139,'Location Catalog Options','Primary Configuration - Location Fields','',15,'Configure Location fields related to how Catalog results and searching is configured in Aspen.'),(140,'Location Browse Category Options','Primary Configuration - Location Fields','',18,'Configure Location fields related to how Catalog results and searching is configured in Aspen.'),(141,'Location Records included in Catalog','Primary Configuration - Location Fields','',21,'Configure Location fields related to what materials (physical and eContent) are included in the Aspen Catalog.'),(142,'Administer Comprise','eCommerce','',10,'Controls if the user can change Comprise settings. This has potential security and cost implications.'),(143,'Administer ProPay','eCommerce','',10,'Controls if the user can change ProPay settings. This has potential security and cost implications.'),(144,'Administer PayPal','eCommerce','',10,'Controls if the user can change PayPal settings. This has potential security and cost implications.'),(145,'Administer WorldPay','eCommerce','',10,'Controls if the user can change WorldPay settings. This has potential security and cost implications.'),(146,'View eCommerce Reports for All Libraries','eCommerce','',5,'Allows the user to view eCommerce reports for all libraries.'),(147,'Edit Library Placards','Local Enrichment','',55,'Allows the user to edit, but not create placards for their library.'),(148,'Administer Donations','eCommerce','',10,'Controls if the user can change Donations settings. This has potential security and cost implications.'),(149,'Administer Course Reserves','Course Reserves','',10,'Controls if the user can change Course Reserve settings.'),(150,'View Donations Reports for All Libraries','eCommerce','',7,'Allows the user to view donations reports for all libraries.'),(151,'Administer Curbside Pickup','Curbside Pickup','',10,'Controls if the user can change Curbside Pickup settings.'),(152,'Administer Two-Factor Authentication','Primary Configuration','',90,'Controls if the user can change Two-Factor Authentication settings. This has potential security and cost implications.'),(153,'Administer Aspen LiDA Settings','Aspen LiDA','Aspen LiDA',10,'Controls if the user can change Aspen LiDA settings.'),(154,'Administer Grouped Work Tests','Cataloging & eContent','',200,'Controls if the user can define and access tests of Grouped Work searches.'),(155,'Administer Request Tracker Connection','Aspen Discovery Support','',10,'Allows configuration of connection to the support system.'),(156,'View Active Tickets','Aspen Discovery Support','',20,'Allows display of active tickets within the support system.'),(157,'Set Development Priorities','Aspen Discovery Support','',30,'Allows setting of priorities for development.'),(158,'Administer Springshare LibCal Settings','Events','Events',20,'Allows the user to administer integration with Springshare LibCal for all libraries.'),(159,'Administer Bad Words','Local Enrichment','',65,'Allows the user to administer bad words list.'),(160,'Administer Xpress-pay','eCommerce','',10,'Controls if the user can change Xpress-pay settings. This has potential security and cost implications.'),(161,'Administer EBSCOhost Settings','Cataloging & eContent','EBSCOhost',20,'Allows the user to administer integration with EBSCOhost'),(162,'Administer VDX Hold Groups','ILL Integration','',15,'Allows the user to define Hold Groups for Interlibrary Loans with VDX.'),(163,'Administer VDX Settings','ILL Integration','',10,'Allows the user to define settings for Interlibrary Loans with VDX.'),(164,'Administer All VDX Forms','ILL Integration','',20,'Allows the user to define administer all VDX Forms.'),(165,'Administer Library VDX Forms','ILL Integration','',22,'Allows the user to define administer VDX Forms for their library.'),(166,'View Notifications Reports','Aspen LiDA','Aspen LiDA',6,'Controls if the user can view the Notifications Report.'),(167,'Administer ACI Speedpay','eCommerce','',10,'Controls if the user can change ACI Speedpay settings. This has potential security and cost implications.'),(168,'Hide Metadata','Cataloging & eContent','',85,'Controls if the user can hide metadata like Subjects and Series from facets and display information.'),(169,'Send Notifications to All Libraries','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from all libraries'),(170,'Batch Delete','System Administration','',6,'Controls if the user is able to batch delete.'),(171,'Send Notifications to Home Library','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from their home library.'),(172,'Send Notifications to Home Location','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from their home location.'),(173,'Send Notifications to Home Library Locations','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users for all locations that are part of their home library.'),(174,'Send Notifications to All Locations','Aspen LiDA','Aspen LiDA',6,'Controls if the user can send notifications to Aspen LiDA users from all locations.'),(175,'Administer Single Sign-on','Primary Configuration','',6,'Controls if the user can change single sign-on (SSO) settings.This has potential security implications.'),(176,'Administer InvoiceCloud','eCommerce','',10,'Controls if the user can change InvoiceCloud settings. This has potential security and cost implications.'),(177,'Administer Communico Settings','Events','Events',20,'Allows the user to administer integration with Communico for all libraries.'),(178,'Administer Certified Payments by Deluxe','eCommerce','',10,'Controls if the user can change Certified Payments by Deluxe settings. This has potential security and cost implications.'),(179,'Share Content with Community','Community Sharing','',10,'Controls if the user can share content with other members of the Aspen Discovery Community they are connected with.'),(180,'Import Content from Community','Community Sharing','',20,'Controls if the user can import content created by other members of the Aspen Discovery Community they are connected with.'),(181,'View Scheduled Updates','System Administration','',10,'Controls if the user can view scheduled updates for Aspen Discovery.'),(182,'Administer PayPal Payflow','eCommerce','',10,'Controls if the user can change PayPal Payflow settings. This has potential security and cost implications.'),(183,'Administer Selected Browse Category Groups','Local Enrichment','',15,'Allows the user to view and edit only the Browse Category Groups they are assigned to.'),(184,'Administer Square','eCommerce','',10,'Controls if the user can change Square settings. This has potential security and cost implications.'),(185,'View Location Collection Reports','Circulation Reports','',40,'Allows the user to view collection reports for their home location (CARL.X) only.'),(186,'View All Collection Reports','Circulation Reports','',50,'Allows the user to view collection reports for any location (CARL.X) only.'),(187,'Administer Twilio','System Administration','',34,'Controls if the user can change Twilio settings. This has potential security and cost implications.'),(188,'Administer Aspen LiDA Self-Check Settings','Aspen LiDA','Aspen LiDA',10,'Controls if the user can change Aspen LiDA Self-Check settings.'),(189,'Administer Events Facet Settings','Events','Events',20,'Allows the user to alter events facets for all libraries.'),(190,'Administer All Quick Polls','Web Builder','Web Builder',45,'Allows the user to administer polls for all libraries.'),(191,'Administer Library Quick Polls','Web Builder','Web Builder',46,'Allows the user to administer polls for their home library.'),(192,'Lock Administration Fields','System Administration','',25,'Allows the user to lock administration fields and change locked fields.'),(193,'Administer All Open Archives Facet Settings','Open Archives','Open Archives',0,'Allows the user to alter Open Archives facets for all libraries.'),(194,'Administer Library Open Archives Facet Settings','Open Archives','Open Archives',0,'Allows the user to alter Open Archives facets for their library.'),(195,'Administer All Website Facet Settings','Website Indexing','Web Indexer',0,'Allows the user to alter website facets for all libraries.'),(196,'Administer Library Website Facet Settings','Website Indexing','Web Indexer',0,'Allows the user to alter website facets for their library.'),(197,'View eCommerce Reports for Home Library','eCommerce','',6,'Allows the user to view eCommerce reports for their home library'),(198,'View Donations Reports for Home Library','eCommerce','',8,'Allows the user to view donations reports for their home library'),(199,'Run Optional Updates','System Administration','',22,'Allows the user to apply optional updates to their system.'),(200,'Administer Self Registration Forms','Cataloging & eContent','',20,'Allows the user to alter custom self registration forms for all libraries.'),(201,'Administer All Email Templates','Email','',10,'Allows the user to edit all email templates in the system.'),(202,'Administer Library Email Templates','Email','',20,'Allows the user to edit email templates for their library.'),(203,'Administer Palace Project','Cataloging & eContent','Palace Project',155,'Allows the user configure Palace Project integration for all libraries.'),(204,'Administer Stripe','eCommerce','',10,'Controls if the user can change Stripe settings. This has potential security and cost implications.'),(205,'Administer Assabet Settings','Events','Events',20,'Allows the user to administer integration with Assabet for all libraries.'),(206,'Administer User Agents','Primary Configuration','',55,'Allows the user to administer User Agents for Aspen Discovery.'),(207,'Administer NCR','eCommerce','',10,'Controls if the user can change NCR settings. This has potential security and cost implications.'),(208,'Administer All Grapes Pages','Web Builder','Web Builder',150,'Allows the user to define grapes pages for all libraries.'),(209,'Administer Library Grapes Pages','Web Builder','Web Builder',151,'Allows the user to define grapes pages for their home library.'),(210,'Administer SMTP','Primary Configuration','',30,'Controls if the user can change SMTP settings.'),(211,'Test Self Check','Circulation','',20,'Allows users to test checking titles out within Aspen Discovey.'),(212,'Administer All Format Sorting','Grouped Work Display','',40,'Allows users to change how formats are sorted within a grouped work for all libraries.'),(213,'Administer Library Format Sorting','Grouped Work Display','',50,'Allows users to change how formats are sorted within a grouped work for their library.'),(214,'Barcode Generators','Circulation Reports','',60,'Allows the user to run the Barcode Generators'),(215,'Administer SnapPay','eCommerce','',10,'Controls if the user can change SnapPay settings. This has potential security and cost implications.'),(216,'Place Holds For Materials Requests','Materials Requests','',25,'Allows users to place holds for users that have active Materials Requests once titles are added to the catalog.'),(217,'Administer Replacement Costs','Primary Configuration','',100,'Allows users to administer replacement costs for all libraries.'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -4349,6 +4490,14 @@ CREATE TABLE `reindex_log` ( PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS replacement_costs; +CREATE TABLE `replacement_costs` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `catalogFormat` varchar(255) NOT NULL, + `replacementCost` decimal(10,2) DEFAULT 0.00, + PRIMARY KEY (`id`), + UNIQUE KEY `catalogFormat` (`catalogFormat`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; DROP TABLE IF EXISTS request_tracker_connection; CREATE TABLE `request_tracker_connection` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4377,12 +4526,12 @@ CREATE TABLE `role_permissions` ( PRIMARY KEY (`id`), UNIQUE KEY `roleId_2` (`roleId`,`permissionId`), KEY `roleId` (`roleId`) -) ENGINE=InnoDB AUTO_INCREMENT=1191 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=1199 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; LOCK TABLES `role_permissions` WRITE; /*!40000 ALTER TABLE `role_permissions` DISABLE KEYS */; -INSERT INTO `role_permissions` VALUES (124,1,2),(123,1,3),(130,1,85),(1143,2,1),(1145,2,4),(1147,2,5),(1148,2,6),(1140,2,7),(1141,2,8),(1142,2,9),(1150,2,10),(1151,2,12),(1105,2,14),(1107,2,16),(1108,2,19),(1109,2,20),(1110,2,21),(1111,2,22),(1103,2,26),(1093,2,27),(1094,2,28),(1046,2,29),(1047,2,30),(1048,2,31),(1050,2,32),(1051,2,33),(1052,2,34),(1053,2,35),(1054,2,36),(1055,2,37),(1056,2,38),(1057,2,39),(1058,2,40),(1060,2,41),(1061,2,42),(1062,2,43),(1063,2,44),(1064,2,45),(1065,2,46),(1066,2,47),(1067,2,49),(1088,2,50),(1089,2,52),(1095,2,54),(1096,2,56),(1097,2,58),(1098,2,60),(1152,2,61),(1153,2,62),(1154,2,63),(1104,2,70),(1084,2,71),(1167,2,72),(1039,2,75),(1087,2,76),(1155,2,77),(1158,2,78),(1102,2,79),(1156,2,86),(1071,2,91),(1100,2,92),(1149,2,94),(1159,2,95),(1160,2,97),(1161,2,99),(1162,2,101),(1163,2,103),(1164,2,105),(1165,2,107),(1166,2,108),(1101,2,109),(1146,2,111),(1157,2,113),(1113,2,115),(1114,2,116),(1115,2,117),(1116,2,118),(1117,2,119),(1118,2,120),(1119,2,121),(1120,2,122),(1121,2,123),(1122,2,124),(1123,2,125),(1124,2,126),(1125,2,127),(1126,2,128),(1127,2,129),(1129,2,130),(1130,2,131),(1131,2,132),(1128,2,133),(1132,2,134),(1133,2,135),(1134,2,136),(1135,2,137),(1136,2,138),(1137,2,139),(1138,2,140),(1139,2,141),(1076,2,142),(1077,2,144),(1078,2,145),(1074,2,146),(1079,2,148),(1072,2,149),(1075,2,150),(1073,2,151),(1112,2,152),(1045,2,153),(1068,2,154),(1040,2,155),(1041,2,156),(1042,2,157),(1085,2,158),(1099,2,159),(1080,2,160),(1049,2,161),(1091,2,162),(1090,2,163),(1092,2,164),(1043,2,166),(1081,2,167),(1059,2,168),(1044,2,169),(1144,2,170),(1106,2,175),(1082,2,176),(1086,2,177),(1083,2,178),(1069,2,179),(1070,2,180),(1168,2,181),(1169,2,182),(1170,2,184),(1171,2,187),(1172,2,188),(1173,2,189),(1174,2,190),(1175,2,191),(1176,2,192),(1177,2,193),(1178,2,194),(1179,2,195),(1180,2,196),(1183,2,199),(1184,2,200),(1185,2,201),(1186,2,203),(1187,2,204),(1188,2,205),(1189,2,206),(1190,2,207),(5,3,76),(474,6,11),(475,6,13),(445,6,15),(446,6,17),(447,6,18),(448,6,22),(436,6,41),(437,6,51),(438,6,53),(439,6,55),(440,6,57),(441,6,59),(476,6,63),(435,6,75),(477,6,77),(478,6,78),(443,6,81),(444,6,82),(442,6,110),(449,6,116),(450,6,117),(451,6,118),(452,6,119),(453,6,120),(454,6,121),(455,6,122),(456,6,123),(457,6,124),(458,6,125),(459,6,126),(460,6,127),(461,6,128),(462,6,129),(464,6,130),(465,6,131),(466,6,132),(463,6,133),(467,6,135),(468,6,136),(469,6,137),(470,6,138),(471,6,139),(472,6,140),(473,6,141),(1181,6,197),(1182,6,198),(1,7,55),(2,7,57),(3,7,59),(4,7,63),(31,8,23),(30,8,24),(33,8,25),(153,9,87),(154,9,88),(155,9,89),(156,9,90),(504,10,15),(505,10,17),(506,10,22),(498,10,46),(499,10,55),(500,10,57),(516,10,63),(502,10,93),(503,10,110),(507,10,117),(508,10,122),(509,10,123),(511,10,132),(510,10,133),(512,10,136),(513,10,138),(514,10,139),(515,10,140),(501,10,147),(36,11,18),(39,11,22),(37,11,55),(38,11,57),(343,11,136),(344,11,139),(345,11,140),(35,13,77),(284,13,113),(119,31,27),(120,31,28),(117,32,8),(113,32,9),(108,32,29),(109,32,30),(107,32,31),(110,32,32),(111,32,33),(112,32,34),(106,32,35),(115,32,36),(116,32,37),(102,32,38),(104,32,39),(103,32,40),(105,32,62),(283,32,113),(131,36,80),(128,37,81),(129,38,83),(168,39,95),(169,39,97),(170,39,99),(171,39,101),(172,39,103),(173,39,105),(174,39,107),(175,39,108),(176,40,96),(177,40,98),(178,40,100),(179,40,102),(180,40,104),(181,40,106),(182,40,107); +INSERT INTO `role_permissions` VALUES (124,1,2),(123,1,3),(130,1,85),(1143,2,1),(1145,2,4),(1147,2,5),(1148,2,6),(1140,2,7),(1141,2,8),(1142,2,9),(1150,2,10),(1151,2,12),(1105,2,14),(1107,2,16),(1108,2,19),(1109,2,20),(1110,2,21),(1111,2,22),(1103,2,26),(1093,2,27),(1094,2,28),(1046,2,29),(1047,2,30),(1048,2,31),(1050,2,32),(1051,2,33),(1052,2,34),(1053,2,35),(1054,2,36),(1055,2,37),(1056,2,38),(1057,2,39),(1058,2,40),(1060,2,41),(1061,2,42),(1062,2,43),(1063,2,44),(1064,2,45),(1065,2,46),(1066,2,47),(1067,2,49),(1088,2,50),(1089,2,52),(1095,2,54),(1096,2,56),(1097,2,58),(1098,2,60),(1152,2,61),(1153,2,62),(1154,2,63),(1104,2,70),(1084,2,71),(1167,2,72),(1039,2,75),(1087,2,76),(1155,2,77),(1158,2,78),(1102,2,79),(1156,2,86),(1071,2,91),(1100,2,92),(1149,2,94),(1159,2,95),(1160,2,97),(1161,2,99),(1162,2,101),(1163,2,103),(1164,2,105),(1165,2,107),(1166,2,108),(1101,2,109),(1146,2,111),(1157,2,113),(1113,2,115),(1114,2,116),(1115,2,117),(1116,2,118),(1117,2,119),(1118,2,120),(1119,2,121),(1120,2,122),(1121,2,123),(1122,2,124),(1123,2,125),(1124,2,126),(1125,2,127),(1126,2,128),(1127,2,129),(1129,2,130),(1130,2,131),(1131,2,132),(1128,2,133),(1132,2,134),(1133,2,135),(1134,2,136),(1135,2,137),(1136,2,138),(1137,2,139),(1138,2,140),(1139,2,141),(1076,2,142),(1077,2,144),(1078,2,145),(1074,2,146),(1079,2,148),(1072,2,149),(1075,2,150),(1073,2,151),(1112,2,152),(1045,2,153),(1068,2,154),(1040,2,155),(1041,2,156),(1042,2,157),(1085,2,158),(1099,2,159),(1080,2,160),(1049,2,161),(1091,2,162),(1090,2,163),(1092,2,164),(1043,2,166),(1081,2,167),(1059,2,168),(1044,2,169),(1144,2,170),(1106,2,175),(1082,2,176),(1086,2,177),(1083,2,178),(1069,2,179),(1070,2,180),(1168,2,181),(1169,2,182),(1170,2,184),(1171,2,187),(1172,2,188),(1173,2,189),(1174,2,190),(1175,2,191),(1176,2,192),(1177,2,193),(1178,2,194),(1179,2,195),(1180,2,196),(1183,2,199),(1184,2,200),(1185,2,201),(1186,2,203),(1187,2,204),(1188,2,205),(1189,2,206),(1190,2,207),(1191,2,208),(1194,2,210),(1195,2,211),(1196,2,212),(1197,2,215),(1198,2,217),(5,3,76),(474,6,11),(475,6,13),(445,6,15),(446,6,17),(447,6,18),(448,6,22),(436,6,41),(437,6,51),(438,6,53),(439,6,55),(440,6,57),(441,6,59),(476,6,63),(435,6,75),(477,6,77),(478,6,78),(443,6,81),(444,6,82),(442,6,110),(449,6,116),(450,6,117),(451,6,118),(452,6,119),(453,6,120),(454,6,121),(455,6,122),(456,6,123),(457,6,124),(458,6,125),(459,6,126),(460,6,127),(461,6,128),(462,6,129),(464,6,130),(465,6,131),(466,6,132),(463,6,133),(467,6,135),(468,6,136),(469,6,137),(470,6,138),(471,6,139),(472,6,140),(473,6,141),(1181,6,197),(1182,6,198),(1,7,55),(2,7,57),(3,7,59),(4,7,63),(31,8,23),(30,8,24),(33,8,25),(153,9,87),(154,9,88),(155,9,89),(156,9,90),(504,10,15),(505,10,17),(506,10,22),(498,10,46),(499,10,55),(500,10,57),(516,10,63),(502,10,93),(503,10,110),(507,10,117),(508,10,122),(509,10,123),(511,10,132),(510,10,133),(512,10,136),(513,10,138),(514,10,139),(515,10,140),(501,10,147),(36,11,18),(39,11,22),(37,11,55),(38,11,57),(343,11,136),(344,11,139),(345,11,140),(35,13,77),(284,13,113),(119,31,27),(120,31,28),(117,32,8),(113,32,9),(108,32,29),(109,32,30),(107,32,31),(110,32,32),(111,32,33),(112,32,34),(106,32,35),(115,32,36),(116,32,37),(102,32,38),(104,32,39),(103,32,40),(105,32,62),(283,32,113),(131,36,80),(128,37,81),(129,38,83),(168,39,95),(169,39,97),(170,39,99),(171,39,101),(172,39,103),(173,39,105),(174,39,107),(175,39,108),(1192,39,208),(176,40,96),(177,40,98),(178,40,100),(179,40,102),(180,40,104),(181,40,106),(182,40,107),(1193,40,209); /*!40000 ALTER TABLE `role_permissions` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -4503,15 +4652,15 @@ CREATE TABLE `self_reg_form_values` ( `id` int(11) NOT NULL AUTO_INCREMENT, `selfRegistrationFormId` int(11) NOT NULL, `weight` int(11) NOT NULL DEFAULT 0, - `symphonyName` varchar(50) NOT NULL, + `ilsName` varchar(50) NOT NULL, `displayName` varchar(50) NOT NULL, `fieldType` enum('text','date') NOT NULL DEFAULT 'text', `patronUpdate` enum('read_only','hidden','editable','editable_required') NOT NULL DEFAULT 'editable', `required` tinyint(4) NOT NULL DEFAULT 0, - `note` varchar(75) DEFAULT NULL, + `note` varchar(255) DEFAULT NULL, `section` enum('librarySection','identitySection','mainAddressSection','contactInformationSection') NOT NULL DEFAULT 'identitySection', PRIMARY KEY (`id`), - UNIQUE KEY `groupValue` (`selfRegistrationFormId`,`symphonyName`) + UNIQUE KEY `groupValue` (`selfRegistrationFormId`,`ilsName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; DROP TABLE IF EXISTS self_registration_form; CREATE TABLE `self_registration_form` ( @@ -4528,6 +4677,35 @@ CREATE TABLE `self_registration_form` ( PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +DROP TABLE IF EXISTS self_registration_form_carlx; +CREATE TABLE `self_registration_form_carlx` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `selfRegEmailNotices` varchar(255) DEFAULT NULL, + `selfRegDefaultBranch` varchar(255) DEFAULT NULL, + `selfRegPatronExpirationDate` date DEFAULT NULL, + `selfRegPatronStatusCode` varchar(255) DEFAULT NULL, + `selfRegPatronType` varchar(255) DEFAULT NULL, + `selfRegRegBranch` varchar(255) DEFAULT NULL, + `selfRegRegisteredBy` varchar(255) DEFAULT NULL, + `lastPatronBarcode` varchar(255) DEFAULT NULL, + `barcodePrefix` varchar(255) DEFAULT NULL, + `selfRegIDNumberLength` int(2) DEFAULT NULL, + `termsOfServiceSetting` int(11) NOT NULL DEFAULT -1, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS self_registration_form_sierra; +CREATE TABLE `self_registration_form_sierra` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `selfRegistrationTemplate` varchar(25) DEFAULT 'default', + `selfRegEmailBarcode` tinyint(4) NOT NULL DEFAULT 0, + `termsOfServiceSetting` int(11) NOT NULL DEFAULT -1, + `selfRegPatronCode` varchar(75) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS self_registration_tos; CREATE TABLE `self_registration_tos` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4556,7 +4734,7 @@ CREATE TABLE `session` ( PRIMARY KEY (`id`), UNIQUE KEY `session_id` (`session_id`), KEY `last_used` (`last_used`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS shared_content; CREATE TABLE `shared_content` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4723,7 +4901,7 @@ CREATE TABLE `slow_ajax_request` ( `timesVerySlow` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `year` (`year`,`month`,`module`,`action`,`method`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS slow_page; CREATE TABLE `slow_page` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4738,7 +4916,7 @@ CREATE TABLE `slow_page` ( `timesVerySlow` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `year` (`year`,`month`,`module`,`action`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS smtp_settings; CREATE TABLE `smtp_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4752,6 +4930,17 @@ CREATE TABLE `smtp_settings` ( `password` varchar(80) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS snappay_settings; +CREATE TABLE `snappay_settings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) NOT NULL, + `sandboxMode` tinyint(4) NOT NULL DEFAULT 0, + `accountId` bigint(10) NOT NULL, + `merchantId` varchar(20) NOT NULL, + `apiAuthenticationCode` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS springshare_libcal_events; CREATE TABLE `springshare_libcal_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -4922,7 +5111,7 @@ CREATE TABLE `summon_settings` ( DROP TABLE IF EXISTS summon_usage; CREATE TABLE `summon_usage` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `summonId` varchar(15) NOT NULL, + `summonId` varchar(100) DEFAULT NULL, `month` int(2) NOT NULL, `year` int(4) NOT NULL, `timesViewedInSearch` int(11) NOT NULL, @@ -5036,6 +5225,9 @@ CREATE TABLE `system_variables` ( `monitorAntivirus` tinyint(1) DEFAULT 1, `enableBrandedApp` tinyint(1) DEFAULT 0, `enableNovelistSeriesIntegration` tinyint(4) DEFAULT 1, + `enableGrapesEditor` tinyint(1) DEFAULT 0, + `deletionCommitInterval` int(11) DEFAULT 1000, + `waitAfterDeleteCommit` tinyint(4) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS text_block_translation; @@ -5469,7 +5661,7 @@ CREATE TABLE `translation_terms` ( PRIMARY KEY (`id`), KEY `url` (`samplePageUrl`), KEY `term` (`term`(500)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS translations; CREATE TABLE `translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -5482,7 +5674,7 @@ CREATE TABLE `translations` ( PRIMARY KEY (`id`), UNIQUE KEY `term_language` (`termId`,`languageId`), KEY `translation_status` (`languageId`,`translated`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS twilio_settings; CREATE TABLE `twilio_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -5621,6 +5813,11 @@ CREATE TABLE `user` ( `disableCirculationActions` tinyint(1) DEFAULT 0, `onboardAppNotifications` tinyint(1) NOT NULL DEFAULT 1, `shouldAskBrightness` tinyint(1) NOT NULL DEFAULT 1, + `enableCostSavings` tinyint(4) DEFAULT 0, + `totalCostSavings` decimal(10,2) DEFAULT 0.00, + `currentCostSavings` decimal(10,2) DEFAULT 0.00, + `userCookiePreferenceLocalAnalytics` tinyint(1) DEFAULT 0, + `analyticsDataCleared` tinyint(4) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `username` (`source`,`username`), KEY `user_barcode` (`source`,`ils_barcode`), @@ -5643,6 +5840,14 @@ CREATE TABLE `user_account_summary` ( PRIMARY KEY (`id`), UNIQUE KEY `source` (`source`,`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS user_administration_locations; +CREATE TABLE `user_administration_locations` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `userId` int(11) NOT NULL, + `locationId` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `userId` (`userId`,`locationId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; DROP TABLE IF EXISTS user_agent; CREATE TABLE `user_agent` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -5710,7 +5915,7 @@ CREATE TABLE `user_checkout` ( `accessOnlineUrl` varchar(255) DEFAULT NULL, `transactionId` varchar(40) DEFAULT NULL, `coverUrl` varchar(255) DEFAULT NULL, - `format` varchar(75) DEFAULT NULL, + `format` varchar(255) DEFAULT NULL, `renewIndicator` varchar(20) DEFAULT NULL, `groupedWorkId` char(40) DEFAULT NULL, `overdriveMagazine` tinyint(1) DEFAULT NULL, @@ -5825,7 +6030,7 @@ CREATE TABLE `user_hold` ( `canFreeze` tinyint(1) DEFAULT NULL, `reactivateDate` int(11) DEFAULT NULL, `groupedWorkId` char(40) DEFAULT NULL, - `format` varchar(50) DEFAULT NULL, + `format` varchar(150) DEFAULT NULL, `coverUrl` varchar(255) DEFAULT NULL, `linkUrl` varchar(255) DEFAULT NULL, `isIll` tinyint(1) DEFAULT 0, @@ -5847,6 +6052,22 @@ CREATE TABLE `user_hoopla_usage` ( UNIQUE KEY `instance` (`instance`,`userId`,`year`,`month`), KEY `year` (`year`,`month`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS user_ils_messages; +CREATE TABLE `user_ils_messages` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `messageId` varchar(100) NOT NULL, + `userId` int(11) DEFAULT NULL, + `type` varchar(50) DEFAULT NULL, + `status` enum('pending','sent','failed') DEFAULT 'pending', + `title` varchar(200) DEFAULT NULL, + `content` mediumtext DEFAULT NULL, + `error` varchar(255) DEFAULT NULL, + `dateQueued` int(11) DEFAULT NULL, + `dateSent` int(11) DEFAULT NULL, + `isRead` tinyint(1) DEFAULT 0, + `defaultContent` mediumtext DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS user_ils_usage; CREATE TABLE `user_ils_usage` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -5902,7 +6123,7 @@ CREATE TABLE `user_list` ( DROP TABLE IF EXISTS user_list_entry; CREATE TABLE `user_list_entry` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `sourceId` varchar(50) NOT NULL, + `sourceId` varchar(255) DEFAULT NULL, `listId` int(11) DEFAULT NULL, `notes` longtext DEFAULT NULL, `dateAdded` int(11) DEFAULT NULL, @@ -6062,6 +6283,7 @@ CREATE TABLE `user_reading_history_work` ( `checkInDate` bigint(20) DEFAULT NULL, `deleted` tinyint(4) NOT NULL DEFAULT 0, `isIll` tinyint(1) DEFAULT 0, + `costSavings` decimal(10,2) DEFAULT 0.00, PRIMARY KEY (`id`), KEY `userId` (`userId`,`checkOutDate`), KEY `userId_2` (`userId`,`checkInDate`), @@ -6267,7 +6489,7 @@ CREATE TABLE `web_builder_custom_form` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `urlAlias` varchar(100) DEFAULT NULL, - `emailResultsTo` varchar(100) DEFAULT NULL, + `emailResultsTo` varchar(150) DEFAULT NULL, `requireLogin` tinyint(1) DEFAULT NULL, `introText` longtext DEFAULT NULL, `submissionResultText` longtext DEFAULT NULL, @@ -6443,6 +6665,14 @@ CREATE TABLE `web_builder_resource` ( PRIMARY KEY (`id`), KEY `featured` (`featured`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +DROP TABLE IF EXISTS web_builder_resource_access_library; +CREATE TABLE `web_builder_resource_access_library` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `webResourceId` int(11) NOT NULL, + `libraryId` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `webResourceId` (`webResourceId`,`libraryId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS web_builder_resource_audience; CREATE TABLE `web_builder_resource_audience` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -6597,7 +6827,30 @@ INSERT INTO layout_settings (id, name) VALUES (1, 'default'); INSERT INTO library (libraryId, subdomain, displayName, finePaymentType, repeatSearchOption, allowPinReset, loginFormUsernameLabel, loginFormPasswordLabel, isDefault, browseCategoryGroupId, groupedWorkDisplaySettingId) VALUES (1,'main','Main Library',0, 'none', 0, 'Library Barcode', 'PIN / Password', 1, 1, 1); INSERT INTO list_indexing_settings VALUES (1,1,0,0); INSERT INTO location (locationId, code, displayName, libraryId, groupedWorkDisplaySettingId, browseCategoryGroupId)VALUES (1,'main','Main Library',1, 1, 1); -INSERT INTO materials_request_status VALUES (1,'Request Pending',1,0,'',1,0,-1),(2,'Already owned/On order',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The Library already owns this item or it is already on order. Please access our catalog to place this item on hold. Please check our online catalog periodically to put a hold for this item.',0,0,-1),(3,'Item purchased',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Outcome: The library is purchasing the item you requested. Please check our online catalog periodically to put yourself on hold for this item. We anticipate that this item will be available soon for you to place a hold.',0,0,-1),(4,'Referred to Collection Development - Adult',0,0,'',1,0,-1),(5,'Referred to Collection Development - J/YA',0,0,'',1,0,-1),(6,'Referred to Collection Development - AV',0,0,'',1,0,-1),(7,'ILL Under Review',0,0,'',1,0,-1),(8,'Request Referred to ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The library\'s Interlibrary loan department is reviewing your request. We will attempt to borrow this item from another system. This process generally takes about 2 - 6 weeks.',1,0,-1),(9,'Request Filled by ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Our Interlibrary Loan Department is set to borrow this item from another library.',0,0,-1),(10,'Ineligible ILL',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Your library account is not eligible for interlibrary loan at this time.',0,0,-1),(11,'Not enough info - please contact Collection Development to clarify',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We need more specific information in order to locate the exact item you need. Please re-submit your request with more details.',1,0,-1),(12,'Unable to acquire the item - out of print',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is out of print.',0,0,-1),(13,'Unable to acquire the item - not available in the US',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available in the US.',0,0,-1),(14,'Unable to acquire the item - not available from vendor',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available from a preferred vendor.',0,0,-1),(15,'Unable to acquire the item - not published',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested has not yet been published. Please check our catalog when the publication date draws near.',0,0,-1),(16,'Unable to acquire the item - price',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.',0,0,-1),(17,'Unable to acquire the item - publication date',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.',0,0,-1),(18,'Unavailable',0,1,'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested cannot be purchased at this time from any of our regular suppliers and is not available from any of our lending libraries.',0,0,-1),(19,'Cancelled by Patron',0,0,'',0,1,-1),(20,'Cancelled - Duplicate Request',0,0,'',0,0,-1); +INSERT INTO `materials_request_status` (`id`, `description`, `isDefault`, `sendEmailToPatron`, `emailTemplate`, `isOpen`, `isPatronCancel`, `libraryId`, `checkForHolds`, `holdPlacedSuccessfully`, `holdFailed`, `holdNotNeeded`) VALUES + (1, 'Request Pending', 1, 0, '', 1, 0, -1, 0, 0, 0, 0), + (2, 'Already owned/On order', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The Library already owns this item or it is already on order. Please access our catalog to place this item on hold. Please check our online catalog periodically to put a hold for this item.', 0, 0, -1, 0, 0, 0, 0), + (3, 'Item purchased', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Outcome: The library is purchasing the item you requested. Please check our online catalog periodically to put yourself on hold for this item. We anticipate that this item will be available soon for you to place a hold.', 1, 0, -1, 1, 0, 0, 0), + (4, 'Referred to Collection Development - Adult', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (5, 'Referred to Collection Development - J/YA', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (6, 'Referred to Collection Development - AV', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (7, 'ILL Under Review', 0, 0, '', 1, 0, -1, 0, 0, 0, 0), + (8, 'Request Referred to ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The library\'s Interlibrary loan department is reviewing your request. We will attempt to borrow this item from another system. This process generally takes about 2 - 6 weeks.', 1, 0, -1, 0, 0, 0, 0), + (9, 'Request Filled by ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Our Interlibrary Loan Department is set to borrow this item from another library.', 0, 0, -1, 0, 0, 0, 0), + (10, 'Ineligible ILL', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. Your library account is not eligible for interlibrary loan at this time.', 0, 0, -1, 0, 0, 0, 0), + (11, 'Not enough info - please contact Collection Development to clarify', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We need more specific information in order to locate the exact item you need. Please re-submit your request with more details.', 1, 0, -1, 0, 0, 0, 0), + (12, 'Unable to acquire the item - out of print', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is out of print.', 0, 0, -1, 0, 0, 0, 0), + (13, 'Unable to acquire the item - not available in the US', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available in the US.', 0, 0, -1, 0, 0, 0, 0), + (14, 'Unable to acquire the item - not available from vendor', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item is not available from a preferred vendor.', 0, 0, -1, 0, 0, 0, 0), + (15, 'Unable to acquire the item - not published', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested has not yet been published. Please check our catalog when the publication date draws near.', 0, 0, -1, 0, 0, 0, 0), + (16, 'Unable to acquire the item - price', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.', 0, 0, -1, 0, 0, 0, 0), + (17, 'Unable to acquire the item - publication date', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. We regret that we are unable to acquire the item you requested. This item does not fit our collection guidelines.', 0, 0, -1, 0, 0, 0, 0), + (18, 'Unavailable', 0, 1, 'This e-mail is to let you know the status of your recent request for an item that you did not find in our catalog. The item you requested cannot be purchased at this time from any of our regular suppliers and is not available from any of our lending libraries.', 0, 0, -1, 0, 0, 0, 0), + (19, 'Cancelled by Patron', 0, 0, '', 0, 1, -1, 0, 0, 0, 0), + (20, 'Cancelled - Duplicate Request', 0, 0, '', 0, 0, -1, 0, 0, 0, 0), + (21, 'Hold Placed', 0, 1, '0', 0, 0, -1, 0, 1, 0, 0), + (22, 'Hold Failed', 0, 1, '0', 0, 0, -1, 0, 0, 1, 0), + (23, 'Hold Not Needed', 0, 1, '0', 0, 0, -1, 0, 0, 0, 1); UPDATE modules set enabled=0;UPDATE modules set enabled=1 where name in ('Side Loads', 'User Lists'); INSERT INTO system_variables (currencyCode, storeRecordDetailsInSolr, storeRecordDetailsInDatabase, indexVersion, searchVersion, appScheme, trackIpAddresses) VALUES ('USD', 0, 1, 2, 2, 'aspen-lida', 0); INSERT INTO themes