summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2021-03-07 11:34:39 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2021-03-07 11:34:39 +0300
commit92526e02305ca7a54ff90d1bcebdc5ffe7e0dd06 (patch)
tree98a2ef683eefd3d5321d48926157c08b1fe395d2 /priv
parent7f8785fd9be11fbb09283c2dbd32aeb7903a4f58 (diff)
parent13aa98d6899ba1e4a37fa1fd3ddb1ac35ea6e136 (diff)
Merge remote-tracking branch 'remotes/origin/develop' into feature/object-hashtags-rework
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20210121080964_add_default_text_search_config.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20210121080964_add_default_text_search_config.exs b/priv/repo/migrations/20210121080964_add_default_text_search_config.exs
index 09b6cccc9..27f600b70 100644
--- a/priv/repo/migrations/20210121080964_add_default_text_search_config.exs
+++ b/priv/repo/migrations/20210121080964_add_default_text_search_config.exs
@@ -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