Pleroma/priv/repo/migrations/20190711042024_copy_muted_t...

20 lines
654 B
Elixir
Raw Normal View History

2019-07-14 15:29:31 +02:00
defmodule Pleroma.Repo.Migrations.CopyMutedToMutedNotifications do
use Ecto.Migration
import Ecto.Query
2019-07-14 15:29:31 +02:00
alias Pleroma.User
def change do
query = from(u in "users", where: fragment("not (?->'deactivated' @> 'true')", u.info), select: %{info: u.info}, where: u.local == true, order_by: u.id)
2019-07-14 15:29:31 +02:00
Pleroma.Repo.stream(query)
|> Enum.each(fn
%{info: %{mutes: mutes} = info} = user ->
info_cng =
Ecto.Changeset.cast(info, %{muted_notifications: mutes}, [:muted_notifications])
Ecto.Changeset.change(user)
|> Ecto.Changeset.put_embed(:info, info_cng)
|> Pleroma.Repo.update()
end)
end
end