Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F85710834
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/priv/repo/migrations/20190414125034_migrate_old_bookmarks.exs b/priv/repo/migrations/20190414125034_migrate_old_bookmarks.exs
index c30c302f7..09f02c223 100644
--- a/priv/repo/migrations/20190414125034_migrate_old_bookmarks.exs
+++ b/priv/repo/migrations/20190414125034_migrate_old_bookmarks.exs
@@ -1,31 +1,29 @@
defmodule Pleroma.Repo.Migrations.MigrateOldBookmarks do
use Ecto.Migration
import Ecto.Query
alias Pleroma.Activity
alias Pleroma.Bookmark
alias Pleroma.User
alias Pleroma.Repo
def up do
query =
from(u in User,
where: u.local == true,
where: fragment("array_length(?, 1)", u.old_bookmarks) > 0,
select: %{id: u.id, old_bookmarks: u.old_bookmarks}
)
- Repo.transaction(fn ->
- Repo.stream(query)
- |> Enum.each(fn user ->
- Enum.each(user.old_bookmarks, fn id ->
- activity = Activity.get_create_by_object_ap_id(id)
- {:ok, _} = Bookmark.create(user.id, activity.id)
- end)
+ Repo.stream(query)
+ |> Enum.each(fn user ->
+ Enum.each(user.old_bookmarks, fn id ->
+ activity = Activity.get_create_by_object_ap_id(id)
+ {:ok, _} = Bookmark.create(user.id, activity.id)
end)
end)
end
def down do
execute("TRUNCATE TABLE bookmarks")
end
end
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Sep 19, 2:27 AM (21 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1768668
Default Alt Text
(1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment