瀏覽代碼

Migrations: Don't copy over mutes unless there actually are some.

tags/v1.1.4^2
lain 4 年之前
父節點
當前提交
4388255eed
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      priv/repo/migrations/20190711042024_copy_muted_to_muted_notifications.exs

+ 1
- 1
priv/repo/migrations/20190711042024_copy_muted_to_muted_notifications.exs 查看文件

@@ -3,6 +3,6 @@ defmodule Pleroma.Repo.Migrations.CopyMutedToMutedNotifications do
alias Pleroma.User alias Pleroma.User


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

Loading…
取消
儲存