You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akkoma-cachapa/priv/repo/migrations/20190123125839_fix_info_ids...

12 lines
244 B

defmodule Pleroma.Repo.Migrations.FixInfoIds do
use Ecto.Migration
def up do
execute(
"update users set info = jsonb_set(info, '{id}', to_jsonb(uuid_generate_v4())) where info->'id' is null;"
)
end
def down, do: :ok
end