mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-01-19 18:56:08 +01:00
11 lines
330 B
Elixir
11 lines
330 B
Elixir
defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
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
|