akkoma/priv/repo/migrations/20190412052952_add_user_info_fields.exs

21 lines
353 B
Elixir
Raw Normal View History

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