friendica-directory/src/sql/migrations/up/0002.sql
2018-11-17 07:50:42 -05:00

5 lines
189 B
PL/PgSQL

BEGIN;
ALTER table `profile` DROP INDEX `profile-ft`;
ALTER table `profile` ADD FULLTEXT KEY `profile-ft` (`name`, `pdesc`, `profile_url`, `locality`, `region`, `country`, `tags`);
COMMIT;