Fix migration in cases where database name has a hyphen

This commit is contained in:
Mark Felder 2021-03-02 18:17:32 -06:00
parent 37c37090fa
commit 5b8cceba09
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ defmodule Pleroma.Repo.Migrations.AddDefaultTextSearchConfig do
def change do
execute("DO $$
BEGIN
execute 'ALTER DATABASE '||current_database()||' SET default_text_search_config = ''english'' ';
execute 'ALTER DATABASE \"'||current_database()||'\" SET default_text_search_config = ''english'' ';
END
$$;")
end