f943e181e5e6e957af07df3ad67b6c89cfa80732
[anni] / priv / repo / migrations / 20190123125839_fix_info_ids.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.FixInfoIds do
6   use Ecto.Migration
7
8   def up do
9     execute(
10       "update users set info = jsonb_set(info, '{id}', to_jsonb(uuid_generate_v4())) where info->'id' is null;"
11     )
12   end
13
14   def down, do: :ok
15 end