add migration to add notification settings to user accounts

This commit is contained in:
William Pitcock 2019-05-25 07:25:13 +00:00
parent e7e2e7a1a6
commit 5fbbc57c1b
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
defmodule Pleroma.Repo.Migrations.AddNonFollowsAndNonFollowersFieldsToNotificationSettings do
use Ecto.Migration
def change do
execute("""
update users set info = jsonb_set(info, '{notification_settings}', '{"local": true, "remote": true, "follows": true, "followers": true, "non_follows": true, "non_followers": true}')
where local=true
""")
end
end