1 2 3 4 5 6 7 8 9 10 11
defmodule Pleroma.Repo.Migrations.AddDefaultTextSearchConfig do use Ecto.Migration def change do execute("DO $$ BEGIN execute 'ALTER DATABASE \"'||current_database()||'\" SET default_text_search_config = ''english'' '; END $$;") end end