summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191006135457_move_keys_to_separate_column.exs
blob: cb8d4ae9e7fbd4942870cdd03cbcbc16e476c490 (plain)
1
2
3
4
5
6
7
8
9
10
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