소스 검색

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

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

불러오는 중...
취소
저장