2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2022-02-26 06:11:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-04-13 10:40:42 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddEmailNotificationsToUserInfo do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
|
|
|
execute("
|
|
|
|
UPDATE users
|
|
|
|
SET info = info || '{
|
|
|
|
\"email_notifications\": {
|
2019-04-21 09:36:25 +00:00
|
|
|
\"digest\": false
|
2019-04-13 10:40:42 +00:00
|
|
|
}
|
|
|
|
}'")
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
execute("
|
|
|
|
UPDATE users
|
|
|
|
SET info = info - 'email_notifications'
|
|
|
|
")
|
|
|
|
end
|
|
|
|
end
|