From cd6606b7f69d1604a08cb31fa539cbd549591e23 Mon Sep 17 00:00:00 2001 From: Maxim Filippov Date: Mon, 4 Feb 2019 22:23:09 +0300 Subject: [PATCH] Initialize hide_network with false --- priv/repo/migrations/20190203185340_split_hide_network.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/priv/repo/migrations/20190203185340_split_hide_network.exs b/priv/repo/migrations/20190203185340_split_hide_network.exs index 9cc362d17..fd6fd940a 100644 --- a/priv/repo/migrations/20190203185340_split_hide_network.exs +++ b/priv/repo/migrations/20190203185340_split_hide_network.exs @@ -2,6 +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_followings}'::text[], info->'hide_network')") execute("UPDATE users SET info = jsonb_set(info, '{hide_followers}'::text[], info->'hide_network')") end