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