First
[anni] / priv / repo / migrations / 20171109114020_fill_actor_field.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.FillActorField do
6   use Ecto.Migration
7
8   alias Pleroma.{Repo, Activity}
9
10   def up do
11     max = Repo.aggregate(Activity, :max, :id)
12
13     if max do
14       IO.puts("#{max} activities")
15       chunks = 0..round(max / 10_000)
16
17       Enum.each(chunks, fn i ->
18         min = i * 10_000
19         max = min + 10_000
20
21         execute("""
22         update activities set actor = data->>'actor' where id > #{min} and id <= #{max};
23         """)
24         |> IO.inspect()
25       end)
26     end
27   end
28
29   def down do
30   end
31 end