blob: cf68f1be6463b3f3c54beb4850f71f45aee8ed2c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
 |