2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|