2019-02-03 18:24:09 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
2019-02-05 07:22:31 +00:00
|
|
|
execute("UPDATE users SET info = jsonb_set(info, '{hide_network}'::text[], 'false'::jsonb) WHERE NOT(info::jsonb ? 'hide_network')")
|
2019-02-03 18:24:09 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
def down do
|
|
|
|
end
|
|
|
|
end
|