summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210121080964_add_default_text_search_config.exs
blob: 27f600b705551f709d2a8aea472d60903447c558 (plain)
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