commit: c5f8df08a724763398e2962a2ef378a4f00067a3
parent ba7d7ffd8019ca15403867329126109c3d9c1939
Author: lambda <pleromagit@rogerbraun.net>
Date: Fri, 8 Feb 2019 12:18:05 +0000
Merge branch 'fix/do-split-migration-for-local-users-only' into 'develop'
Split hide_network only for local users
See merge request pleroma/pleroma!781
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/priv/repo/migrations/20190203185340_split_hide_network.exs b/priv/repo/migrations/20190203185340_split_hide_network.exs
@@ -2,9 +2,9 @@ defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
use Ecto.Migration
def up do
- execute("UPDATE users SET info = jsonb_set(info, '{hide_network}'::text[], 'false'::jsonb) WHERE NOT(info::jsonb ? 'hide_network')")
- execute("UPDATE users SET info = jsonb_set(info, '{hide_followings}'::text[], info->'hide_network')")
- execute("UPDATE users SET info = jsonb_set(info, '{hide_followers}'::text[], info->'hide_network')")
+ execute("UPDATE users SET info = jsonb_set(info, '{hide_network}'::text[], 'false'::jsonb) WHERE NOT(info::jsonb ? 'hide_network') AND local")
+ execute("UPDATE users SET info = jsonb_set(info, '{hide_followings}'::text[], info->'hide_network') WHERE local")
+ execute("UPDATE users SET info = jsonb_set(info, '{hide_followers}'::text[], info->'hide_network') WHERE local")
end
def down do