Fix bookmark migration using a query with a schema
authorrinpatch <rinpatch@sdf.org>
Wed, 30 Oct 2019 09:59:14 +0000 (12:59 +0300)
committerlain <lain@soykaf.club>
Fri, 1 Nov 2019 15:26:27 +0000 (16:26 +0100)
This resulted in failures when updating from Pleroma <1.0 because of all
the new fields that were added to the user schema.

priv/repo/migrations/20190414125034_migrate_old_bookmarks.exs

index ce45909541b6b0e35c9824ef9418d0a78776d966..c547d26424d4853a648692e8aa98a01dbe1ea3e3 100644 (file)
@@ -8,10 +8,10 @@ defmodule Pleroma.Repo.Migrations.MigrateOldBookmarks do
 
   def up do
     query =
 
   def up do
     query =
-      from(u in User,
+      from(u in "users",
         where: u.local == true,
         where: u.local == true,
-        where: fragment("array_length(bookmarks, 1)") > 0,
-        select: %{id: u.id, bookmarks: fragment("bookmarks")}
+        where: fragment("array_length(?, 1)", u.bookmarks) > 0,
+        select: %{id: u.id, bookmarks: u.bookmarks}
       )
 
     Repo.stream(query)
       )
 
     Repo.stream(query)