pleroma/priv/repo/migrations/20200604150903_add_fuzzystrmatch_postgres_extension.exs
Ivan Tashkinov 659e15896e [#1570] Experimental feature to improve user search using Levenshtein distance calculation.
Improves short queries, especially containing typos.
2020-06-10 21:02:44 +03:00

24 lines
707 B
Elixir

defmodule Pleroma.Repo.Migrations.AddFuzzystrmatchPostgresExtension do
use Ecto.Migration
require Logger
def up do
Logger.warn("ATTENTION ATTENTION ATTENTION\n")
Logger.warn(
"This will try to create the pg_trgm extension on your database. If your database user does NOT have the necessary rights, you will have to do it manually and re-run the migrations.\nYou can probably do this by running the following:\n"
)
Logger.warn(
"sudo -u postgres psql pleroma_dev -c \"create extension if not exists fuzzystrmatch\"\n"
)
execute("create extension if not exists fuzzystrmatch")
end
def down do
execute("drop extension if exists fuzzystrmatch")
end
end