forked from AkkomaGang/akkoma
21 lines
352 B
Elixir
21 lines
352 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddEmailNotificationsToUserInfo do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
execute("
|
||
|
UPDATE users
|
||
|
SET info = info || '{
|
||
|
\"email_notifications\": {
|
||
|
\"digest\": true
|
||
|
}
|
||
|
}'")
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
execute("
|
||
|
UPDATE users
|
||
|
SET info = info - 'email_notifications'
|
||
|
")
|
||
|
end
|
||
|
end
|