pleroma/priv/repo/migrations/20171212164525_fill_recipie...

30 lines
748 B
Elixir
Raw Normal View History

2022-02-26 00:11:42 -06:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Repo.Migrations.FillRecipientsInActivities do
use Ecto.Migration
alias Pleroma.{Repo, Activity}
def up do
max = Repo.aggregate(Activity, :max, :id)
2019-10-08 07:16:39 -05:00
if max do
IO.puts("#{max} activities")
2019-10-08 07:16:39 -05:00
chunks = 0..round(max / 10_000)
2019-10-08 07:16:39 -05:00
Enum.each(chunks, fn i ->
min = i * 10_000
max = min + 10_000
2019-10-08 07:16:39 -05:00
execute("""
update activities set recipients = array(select jsonb_array_elements_text(data->'to')) where id > #{min} and id <= #{max};
""")
2019-10-08 07:16:39 -05:00
|> IO.inspect()
end)
end
end
2019-06-30 20:08:07 -05:00
def down, do: :ok
end