forked from AkkomaGang/akkoma
Merge branch 'fix-migration' into 'develop'
Fix migration in cases where database name has a hyphen See merge request pleroma/pleroma!3359
This commit is contained in:
commit
49afbcda5f
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