summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210401143153_user_notification_settings_fix.exs
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2021-05-30 12:12:58 -0500
committerAlex Gleason <alex@alexgleason.me>2021-05-30 12:12:58 -0500
commit595bca24ad79bf058ea6319f26b1ef643e6b7a10 (patch)
treedfeb1e2079e29f909d79d884838135675bf6add9 /priv/repo/migrations/20210401143153_user_notification_settings_fix.exs
parent721c966842c2f9b4f4d6f227ecf3de69d2e66346 (diff)
parent5d40ffe429caa21eab33951457bb314677753866 (diff)
downloadpleroma-595bca24ad79bf058ea6319f26b1ef643e6b7a10.tar.gz
pleroma-595bca24ad79bf058ea6319f26b1ef643e6b7a10.zip
Merge remote-tracking branch 'pleroma/develop' into cycles-frontend-static
Diffstat (limited to 'priv/repo/migrations/20210401143153_user_notification_settings_fix.exs')
-rw-r--r--priv/repo/migrations/20210401143153_user_notification_settings_fix.exs17
1 files changed, 17 insertions, 0 deletions
diff --git a/priv/repo/migrations/20210401143153_user_notification_settings_fix.exs b/priv/repo/migrations/20210401143153_user_notification_settings_fix.exs
new file mode 100644
index 000000000..cf68f1be6
--- /dev/null
+++ b/priv/repo/migrations/20210401143153_user_notification_settings_fix.exs
@@ -0,0 +1,17 @@
+defmodule Pleroma.Repo.Migrations.UserNotificationSettingsFix do
+ use Ecto.Migration
+
+ def up do
+ execute(~s(UPDATE users
+ SET
+ notification_settings = '{"followers": true, "follows": true, "non_follows": true, "non_followers": true}'::jsonb WHERE notification_settings IS NULL
+))
+
+ execute("ALTER TABLE users
+ ALTER COLUMN notification_settings SET NOT NULL")
+ end
+
+ def down do
+ :ok
+ end
+end