summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190711042024_copy_muted_to_muted_notifications.exs
blob: a3c5b52deed44a234221bac695d037de2ac0b436 (plain)
1
2
3
4
5
6
7
8
defmodule Pleroma.Repo.Migrations.CopyMutedToMutedNotifications do
  use Ecto.Migration
  alias Pleroma.User

  def change do
  execute("update users set info = safe_jsonb_set(info, '{muted_notifications}', info->'mutes', true) where local = true")
  end
end