aboutsummaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorRoman Chvanikov <chvanikoff@pm.me>2020-07-15 18:29:23 +0300
committerRoman Chvanikov <chvanikoff@pm.me>2020-07-15 18:29:23 +0300
commit24c603c27273a60446f8ed1e8e70ad915e0adce6 (patch)
treed3ff4c93b182c374bf182a0caea0da57ef3b82d5 /priv
parent62686541e4ee0460463247f43a1e71696b96d1df (diff)
parent00f9b53f07346d052adab105bde3428c98fc4660 (diff)
downloadpleroma-24c603c27273a60446f8ed1e8e70ad915e0adce6.tar.gz
Merge develop
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20200626163359_rename_notification_privacy_option.exs19
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