1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-26 16:15:06 +01:00
pleroma/priv/repo/migrations/20190412052952_add_user_info_fields.exs
2019-04-21 16:36:25 +07:00

21 lines
353 B
Elixir

defmodule Pleroma.Repo.Migrations.AddEmailNotificationsToUserInfo do
use Ecto.Migration
def up do
execute("
UPDATE users
SET info = info || '{
\"email_notifications\": {
\"digest\": false
}
}'")
end
def down do
execute("
UPDATE users
SET info = info - 'email_notifications'
")
end
end