mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 03:17:51 +00:00
Fix migration in cases where database name has a hyphen
This commit is contained in:
parent
37c37090fa
commit
5b8cceba09
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ defmodule Pleroma.Repo.Migrations.AddDefaultTextSearchConfig do
|
||||||
def change do
|
def change do
|
||||||
execute("DO $$
|
execute("DO $$
|
||||||
BEGIN
|
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
|
||||||
$$;")
|
$$;")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue