forked from AkkomaGang/akkoma
removing useless transaction
This commit is contained in:
parent
6322c1e123
commit
58711a79d0
1 changed files with 5 additions and 7 deletions
|
@ -14,13 +14,11 @@ def up do
|
||||||
select: %{id: u.id, old_bookmarks: u.old_bookmarks}
|
select: %{id: u.id, old_bookmarks: u.old_bookmarks}
|
||||||
)
|
)
|
||||||
|
|
||||||
Repo.transaction(fn ->
|
Repo.stream(query)
|
||||||
Repo.stream(query)
|
|> Enum.each(fn user ->
|
||||||
|> Enum.each(fn user ->
|
Enum.each(user.old_bookmarks, fn id ->
|
||||||
Enum.each(user.old_bookmarks, fn id ->
|
activity = Activity.get_create_by_object_ap_id(id)
|
||||||
activity = Activity.get_create_by_object_ap_id(id)
|
{:ok, _} = Bookmark.create(user.id, activity.id)
|
||||||
{:ok, _} = Bookmark.create(user.id, activity.id)
|
|
||||||
end)
|
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue