Page MenuHomePhorge

20190203185340_split_hide_network.exs
No OneTemporary

Size
539 B
Referenced Files
None
Subscribers
None

20190203185340_split_hide_network.exs

defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
use Ecto.Migration
def up do
execute(
"UPDATE users SET info = jsonb_set(info, '{hide_network}'::text[], 'false'::jsonb) WHERE NOT(info::jsonb ? 'hide_network') AND local"
)
execute(
"UPDATE users SET info = jsonb_set(info, '{hide_followings}'::text[], info->'hide_network') WHERE local"
)
execute(
"UPDATE users SET info = jsonb_set(info, '{hide_followers}'::text[], info->'hide_network') WHERE local"
)
end
def down do
end
end

File Metadata

Mime Type
text/x-ruby
Expires
Sun, Feb 15, 4:33 AM (23 h, 7 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1091558
Default Alt Text
20190203185340_split_hide_network.exs (539 B)

Event Timeline