Add missing column in profile fulltext index

This commit is contained in:
Hypolite Petovan 2018-11-12 14:15:51 -05:00
parent e03e10e032
commit 66dca727a6
2 changed files with 2 additions and 0 deletions

View File

View File

@ -0,0 +1,2 @@
ALTER table `profile` DROP INDEX `profile-ft`;
ALTER table `profile` ADD FULLTEXT KEY `profile-ft` (`name`, `pdesc`, `profile_url`, `locality`, `region`, `country`, `tags`);