friendica-directory/src/sql/migrations/up/0002.sql

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;