pleroma/priv/repo/migrations/20190711042024_copy_muted_t...

9 lines
254 B
Elixir
Raw Normal View History

2019-07-14 15:29:31 +02:00
defmodule Pleroma.Repo.Migrations.CopyMutedToMutedNotifications do
use Ecto.Migration
alias Pleroma.User
def change do
execute("update users set info = jsonb_set(info, '{muted_notifications}', info->'mutes', true) where local = true")
2019-07-14 15:29:31 +02:00
end
end