logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

20190711042021_create_safe_jsonb_set.exs (863B)


  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. defmodule Pleroma.Repo.Migrations.CreateSafeJsonbSet do
  5. use Ecto.Migration
  6. def change do
  7. execute("""
  8. create or replace function safe_jsonb_set(target jsonb, path text[], new_value jsonb, create_missing boolean default true) returns jsonb as $$
  9. declare
  10. result jsonb;
  11. begin
  12. result := jsonb_set(target, path, coalesce(new_value, 'null'::jsonb), create_missing);
  13. if result is NULL then
  14. raise 'jsonb_set tried to wipe the object, please report this incident to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new';
  15. return target;
  16. else
  17. return result;
  18. end if;
  19. end;
  20. $$ language plpgsql;
  21. """)
  22. end
  23. end