7 lines
264 B
Elixir
7 lines
264 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
|