blob: 2c117dbee69547a1e4eab190ef94583783a9123f (
plain)
1
2
3
4
5
6
7
8
9
10
|
defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
use Ecto.Migration
def up do
execute("UPDATE users SET info = jsonb_set(jsonb_set(info, '{hide_followers}'::text[], info->'hide_network'), '{hide_followings}'::text[], info->'hide_network')")
end
def down do
end
end
|