2019-02-03 18:24:09 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
2019-02-04 19:23:09 +00:00
|
|
|
execute("UPDATE users SET info = '{\"hide_network\": 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
|