2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|