Update Search\TruncateIndex

This commit is contained in:
Visman 2021-12-28 17:59:36 +07:00
parent 8c23bab0a7
commit 00ff34f9c7

View file

@ -19,8 +19,8 @@ class TruncateIndex extends Method
*/
public function truncateIndex(): void
{
$this->c->DB->truncateTable('search_cache');
$this->c->DB->truncateTable('search_matches');
$this->c->DB->truncateTable('search_words');
$this->c->DB->truncateTable('::search_cache');
$this->c->DB->truncateTable('::search_matches');
$this->c->DB->truncateTable('::search_words');
}
}