forked from AkkomaGang/akkoma
Fix SQL
This commit is contained in:
parent
cd6606b7f6
commit
c48aba3c2a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue