summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200307103755_fix_moderation_log_subjects.exs
blob: d1c8539e1b0969cd88e9edf3351537a9fb3a1815 (plain)
1
2
3
4
5
6
7
8
9
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