move to 2.5.5
[anni] / priv / repo / migrations / 20190711042021_create_safe_jsonb_set.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.CreateSafeJsonbSet do
6   use Ecto.Migration
7
8   def change do
9     execute("""
10     create or replace function safe_jsonb_set(target jsonb, path text[], new_value jsonb, create_missing boolean default true) returns jsonb as $$
11     declare
12       result jsonb;
13     begin
14       result := jsonb_set(target, path, coalesce(new_value, 'null'::jsonb), create_missing);
15       if result is NULL then
16         raise 'jsonb_set tried to wipe the object, please report this incident to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new';
17         return target;
18       else
19         return result;
20       end if;
21     end;
22     $$ language plpgsql;
23     """)
24   end
25 end