summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2021-04-01 10:01:31 -0500
committerMark Felder <feld@feld.me>2021-04-01 10:06:24 -0500
commit4ecf6ceea6062d68c382918010dc577151d0131c (patch)
tree4841a9af507b74d77752762d9d1d9cd89b6bcee8 /priv
parent96fe4dd4e2de5d1211e0dbe9f09be502bc46e0da (diff)
Enforce user.notification_settings is NOT NULL
Diffstat (limited to 'priv')
-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