Merge branch 'fix/activitypub-user-view-badmap' into 'develop'
[akkoma] / priv / repo / migrations / 20190203185340_split_hide_network.exs
index fd6fd940a979231308bf37efc805cfcd34ce1648..9c44e8aff09b56a0bc0284740d4baf561bbc1558 100644 (file)
@@ -2,7 +2,7 @@ defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
   use Ecto.Migration
 
   def up do
-    execute("UPDATE users SET info = '{\"hide_network\": false}'::jsonb WHERE NOT(info::jsonb ? 'hide_network')")
+    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')")
   end