forked from AkkomaGang/akkoma
18 lines
405 B
Elixir
18 lines
405 B
Elixir
defmodule Pleroma.Repo.Migrations.DeleteNotificationsFromInvisibleUsers do
|
|
use Ecto.Migration
|
|
|
|
import Ecto.Query
|
|
alias Pleroma.Repo
|
|
|
|
def up do
|
|
Pleroma.Notification
|
|
|> join(:inner, [n], activity in assoc(n, :activity))
|
|
|> where(
|
|
[n, a],
|
|
fragment("? in (SELECT ap_id FROM users WHERE invisible = true)", a.actor)
|
|
)
|
|
|> Repo.delete_all()
|
|
end
|
|
|
|
def down, do: :ok
|
|
end
|