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

26 lines
589 B
Elixir
Raw Normal View History

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 14:16:39 +02:00
if max do
IO.puts("#{max} activities")
2019-10-08 14:16:39 +02:00
chunks = 0..round(max / 10_000)
2019-10-08 14:16:39 +02:00
Enum.each(chunks, fn i ->
min = i * 10_000
max = min + 10_000
2019-10-08 14:16:39 +02:00
execute("""
update activities set recipients = array(select jsonb_array_elements_text(data->'to')) where id > #{min} and id <= #{max};
""")
2019-10-08 14:16:39 +02:00
|> IO.inspect()
end)
end
end
2019-07-01 03:08:07 +02:00
def down, do: :ok
end