akkoma/priv/repo/migrations/20191006135457_move_keys_to_separate_column.exs

11 lines
282 B
Elixir
Raw Normal View History

2019-10-06 13:22:35 +00:00
defmodule Pleroma.Repo.Migrations.MoveKeysToSeparateColumn do
use Ecto.Migration
def change do
2019-10-08 12:16:39 +00:00
execute(
"update users set keys = info->>'keys' where local",
"update users set info = jsonb_set(info, '{keys}'::text[], to_jsonb(keys)) where local"
)
2019-10-06 13:22:35 +00:00
end
end