diff options
| author | Mark Felder <feld@FreeBSD.org> | 2020-07-15 13:34:27 -0500 |
|---|---|---|
| committer | Mark Felder <feld@FreeBSD.org> | 2020-07-15 13:34:27 -0500 |
| commit | b2d398b1d04cd2c258e830e3bb5c49c8b294d139 (patch) | |
| tree | c9cd8e48813bdab768f216b4fb06528f6869d626 /priv/repo/migrations | |
| parent | 7115c5f82efe1ca1817da3152ba3cbc66e0da1a4 (diff) | |
| parent | 00f9b53f07346d052adab105bde3428c98fc4660 (diff) | |
| download | pleroma-b2d398b1d04cd2c258e830e3bb5c49c8b294d139.tar.gz pleroma-b2d398b1d04cd2c258e830e3bb5c49c8b294d139.zip | |
Merge branch 'develop' into refactor/gun-pool-registry
Diffstat (limited to 'priv/repo/migrations')
| -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 |
