Skip to content
Snippets Groups Projects
Commit 41572ce6 authored by Jared Hancock's avatar Jared Hancock
Browse files

Reindex the search table to fix bug in #2111

parent 215ca76a
Branches
Tags
No related merge requests found
......@@ -103,6 +103,12 @@ INSERT INTO `%TABLE_PREFIX%config`
('core', 'agent_name_format', @name_format),
('core', 'client_name_format', @name_format);
-- Drop search table and turn on reindexing
DROP TABLE IF EXISTS `%TABLE_PREFIX%_search`;
UPDATE `%TABLE_PREFIX%config` SET `value` = '1'
WHERE `key` = 'reindex' and `namespace` = 'mysqlsearch';
-- Finished with patch
UPDATE `%TABLE_PREFIX%config`
SET `value` = '00000000000000000000000000000000'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment