summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200307103755_fix_moderation_log_subjects.exs
blob: 986ab6cba4d5d6266f5986db7789b901c179fde0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.FixModerationLogSubjects do
  use Ecto.Migration

  def change do
    execute(
      "update moderation_log set data = safe_jsonb_set(data, '{subject}', safe_jsonb_set('[]'::jsonb, '{0}', data->'subject')) where jsonb_typeof(data->'subject') != 'array' and data->>'action' = ANY('{revoke,grant,activate,deactivate,delete}');"
    )
  end
end