From 6bf261589f736c8bfd9eb10b230e56d857cbaa3c Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Thu, 9 Nov 2017 13:32:53 +0100 Subject: [PATCH] Update activities in own migration. --- .../20171109091239_add_actor_to_activity.exs | 15 ----------- .../20171109114020_fill_actor_field.exs | 25 +++++++++++++++++++ 2 files changed, 25 insertions(+), 15 deletions(-) create mode 100644 priv/repo/migrations/20171109114020_fill_actor_field.exs diff --git a/priv/repo/migrations/20171109091239_add_actor_to_activity.exs b/priv/repo/migrations/20171109091239_add_actor_to_activity.exs index c04922c76..2d8b60a91 100644 --- a/priv/repo/migrations/20171109091239_add_actor_to_activity.exs +++ b/priv/repo/migrations/20171109091239_add_actor_to_activity.exs @@ -1,8 +1,6 @@ defmodule Pleroma.Repo.Migrations.AddActorToActivity do use Ecto.Migration - alias Pleroma.{Repo, Activity} - @disable_ddl_transaction true def up do @@ -10,19 +8,6 @@ def up do add :actor, :string end - max = Repo.aggregate(Activity, :max, :id) - IO.puts("#{max} activities") - chunks = 0..(round(max / 10_000)) - - Enum.each(chunks, fn (i) -> - min = i * 10_000 - max = min + 10_000 - IO.puts("Updating #{min}") - execute """ - update activities set actor = data->>'actor' where id > #{min} and id <= #{max}; - """ - end) - create index(:activities, [:actor, "id DESC NULLS LAST"], concurrently: true) end diff --git a/priv/repo/migrations/20171109114020_fill_actor_field.exs b/priv/repo/migrations/20171109114020_fill_actor_field.exs new file mode 100644 index 000000000..d4ac601da --- /dev/null +++ b/priv/repo/migrations/20171109114020_fill_actor_field.exs @@ -0,0 +1,25 @@ +defmodule Pleroma.Repo.Migrations.FillActorField do + use Ecto.Migration + + alias Pleroma.{Repo, Activity} + + def up do + max = Repo.aggregate(Activity, :max, :id) + IO.puts("#{max} activities") + chunks = 0..(round(max / 10_000)) + + Enum.each(chunks, fn (i) -> + min = i * 10_000 + max = min + 10_000 + IO.puts("Updating #{min}") + execute(""" + update activities set actor = data->>'actor' where id > #{min} and id <= #{max}; + """) + |> IO.inspect + end) + end + + def down do + end +end +