mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-02 14:44:13 +00:00
11 lines
282 B
Elixir
11 lines
282 B
Elixir
defmodule Pleroma.Repo.Migrations.MoveKeysToSeparateColumn do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
execute(
|
|
"update users set keys = info->>'keys' where local",
|
|
"update users set info = jsonb_set(info, '{keys}'::text[], to_jsonb(keys)) where local"
|
|
)
|
|
end
|
|
end
|