pleroma/priv/repo/migrations/20171109114020_fill_actor_f...

27 lines
537 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)
2017-11-09 12:45:17 +00:00
if max do
IO.puts("#{max} activities")
chunks = 0..(round(max / 10_000))
2017-11-09 12:32:53 +00:00
2017-11-09 12:45:17 +00:00
Enum.each(chunks, fn (i) ->
min = i * 10_000
max = min + 10_000
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
""")
|> IO.inspect
end)
end
2017-11-09 12:32:53 +00:00
end
def down do
end
end