forked from AkkomaGang/akkoma
add migration to add notification settings to user accounts
This commit is contained in:
parent
e7e2e7a1a6
commit
5fbbc57c1b
1 changed files with 10 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue