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