diff options
| author | rinpatch <rinpatch@sdf.org> | 2019-10-18 14:11:30 +0300 |
|---|---|---|
| committer | rinpatch <rinpatch@sdf.org> | 2019-10-18 14:11:30 +0300 |
| commit | a1c4a5d7cf99247ef9964fb530a6d2d46468dc82 (patch) | |
| tree | 6e6fd377a358674d8ccf60a0bc756dc45c5e9a43 /priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs | |
| parent | c00797d08ef3e6c57250c9f013b6f912292b031b (diff) | |
| download | pleroma-a1c4a5d7cf99247ef9964fb530a6d2d46468dc82.tar.gz pleroma-a1c4a5d7cf99247ef9964fb530a6d2d46468dc82.zip | |
Fix a migration wiping user info of users that don't have any mutes
And introduce safe_jsonb_set
Diffstat (limited to 'priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs')
| -rw-r--r-- | priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs b/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs new file mode 100644 index 000000000..d70961431 --- /dev/null +++ b/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs @@ -0,0 +1,22 @@ +defmodule Pleroma.Repo.Migrations.CreateSafeJsonbSet do + use Ecto.Migration + alias Pleroma.User + + def change do + execute(""" + create or replace function safe_jsonb_set(target jsonb, path text[], new_value jsonb, create_missing boolean default true) returns jsonb as $$ + declare + result jsonb; + begin + result := jsonb_set(target, path, coalesce(new_value, 'null'::jsonb), create_missing); + if result is NULL then + raise 'jsonb_set tried to wipe the object, please report this incindent to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new'; + return target; + else + return result; + end if; + end; + $$ language plpgsql; + """) + end +end |
