dfe22191bffd3788ba3dac99ae0a4ac148c598e7
[anni] / priv / repo / migrations / 20200626163359_rename_notification_privacy_option.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.RenameNotificationPrivacyOption do
6   use Ecto.Migration
7
8   def up do
9     execute(
10       "UPDATE users SET notification_settings = notification_settings - 'privacy_option' || jsonb_build_object('hide_notification_contents', notification_settings->'privacy_option')
11 where notification_settings ? 'privacy_option'
12 and local"
13     )
14   end
15
16   def down do
17     execute(
18       "UPDATE users SET notification_settings = notification_settings - 'hide_notification_contents' || jsonb_build_object('privacy_option', notification_settings->'hide_notification_contents')
19 where notification_settings ? 'hide_notification_contents'
20 and local"
21     )
22   end
23 end