akkoma/priv/repo/migrations/20171109114020_fill_actor_field.exs

28 lines
536 B
Elixir
Raw Normal View History

2017-11-09 12:32:53 +00:00
defmodule Pleroma.Repo.Migrations.FillActorField do
use Ecto.Migration
alias Pleroma.{Repo, Activity}
def up do
max = Repo.aggregate(Activity, :max, :id)
2019-10-08 12:16:39 +00:00
2017-11-09 12:45:17 +00:00
if max do
IO.puts("#{max} activities")
2019-10-08 12:16:39 +00:00
chunks = 0..round(max / 10_000)
2017-11-09 12:32:53 +00:00
2019-10-08 12:16:39 +00:00
Enum.each(chunks, fn i ->
2017-11-09 12:45:17 +00:00
min = i * 10_000
max = min + 10_000
2019-10-08 12:16:39 +00:00
2017-11-09 12:45:17 +00:00
execute("""
2017-11-09 12:32:53 +00:00
update activities set actor = data->>'actor' where id > #{min} and id <= #{max};
2017-11-09 12:45:17 +00:00
""")
2019-10-08 12:16:39 +00:00
|> IO.inspect()
2017-11-09 12:45:17 +00:00
end)
end
2017-11-09 12:32:53 +00:00
end
def down do
end
end