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