Browse Source

20200802170532_fix_legacy_tags: chunk the user query

note-update
rinpatch 3 years ago
parent
commit
15fa3b6bd8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      priv/repo/migrations/20200802170532_fix_legacy_tags.exs

+ 1
- 1
priv/repo/migrations/20200802170532_fix_legacy_tags.exs View File

@@ -22,7 +22,7 @@ defmodule Pleroma.Repo.Migrations.FixLegacyTags do
where: fragment("? && ?", u.tags, ^legacy_tags),
select: struct(u, [:tags, :id])
)
|> Repo.all()
|> Repo.chunk_stream(100)
|> Enum.each(fn user ->
fix_tags_changeset(user)
|> Repo.update()


Loading…
Cancel
Save