2021-02-06 09:42:17 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddDefaultTextSearchConfig do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
execute("DO $$
|
|
|
|
BEGIN
|
2021-03-03 00:17:32 +00:00
|
|
|
execute 'ALTER DATABASE \"'||current_database()||'\" SET default_text_search_config = ''english'' ';
|
2021-02-06 09:42:17 +00:00
|
|
|
END
|
|
|
|
$$;")
|
|
|
|
end
|
|
|
|
end
|