summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210401143153_user_notification_settings_fix.exs
blob: 3fd325789dc7a3a3f9f8e23002bf96c67749e8b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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