1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-05-19 20:36:40 +02:00

[Database v0004] Add fulltext index to profile for interest match

This commit is contained in:
Hypolite Petovan 2018-12-23 21:18:09 -05:00
parent fc447f07c4
commit dc67cff8ef
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,3 @@
BEGIN;
ALTER table `profile` DROP KEY `tags`;
COMMIT;

View file

@ -0,0 +1,3 @@
BEGIN;
ALTER table `profile` ADD FULLTEXT KEY `tags` (`tags`);
COMMIT;