diff options
| author | Mark Felder <feld@FreeBSD.org> | 2020-06-26 12:45:46 -0500 |
|---|---|---|
| committer | Mark Felder <feld@FreeBSD.org> | 2020-06-26 12:45:46 -0500 |
| commit | 69848d5c97c9e5d4c14fb5613eb174cb81d5026d (patch) | |
| tree | 02411c5e177dc5ed853d420095237a9eb8442a47 /priv | |
| parent | fd5e797379155e5a85deb88dc79f8fbca483948e (diff) | |
| download | pleroma-69848d5c97c9e5d4c14fb5613eb174cb81d5026d.tar.gz pleroma-69848d5c97c9e5d4c14fb5613eb174cb81d5026d.zip | |
Rename notification "privacy_option" setting
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/repo/migrations/20200626163359_rename_notification_privacy_option.exs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200626163359_rename_notification_privacy_option.exs b/priv/repo/migrations/20200626163359_rename_notification_privacy_option.exs new file mode 100644 index 000000000..06d7f7272 --- /dev/null +++ b/priv/repo/migrations/20200626163359_rename_notification_privacy_option.exs @@ -0,0 +1,19 @@ +defmodule Pleroma.Repo.Migrations.RenameNotificationPrivacyOption do + use Ecto.Migration + + def up do + execute( + "UPDATE users SET notification_settings = notification_settings - 'privacy_option' || jsonb_build_object('hide_notification_contents', notification_settings->'privacy_option') +where notification_settings ? 'privacy_option' +and local" + ) + end + + def down do + execute( + "UPDATE users SET notification_settings = notification_settings - 'hide_notification_contents' || jsonb_build_object('privacy_option', notification_settings->'hide_notification_contents') +where notification_settings ? 'hide_notification_contents' +and local" + ) + end +end |
