summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200914105638_delete_notification_without_activity.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20200914105638_delete_notification_without_activity.exs')
-rw-r--r--priv/repo/migrations/20200914105638_delete_notification_without_activity.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20200914105638_delete_notification_without_activity.exs b/priv/repo/migrations/20200914105638_delete_notification_without_activity.exs
index 9333fc5a1..252eb0716 100644
--- a/priv/repo/migrations/20200914105638_delete_notification_without_activity.exs
+++ b/priv/repo/migrations/20200914105638_delete_notification_without_activity.exs
@@ -7,7 +7,7 @@ defmodule Pleroma.Repo.Migrations.DeleteNotificationWithoutActivity do
def up do
from(
q in Pleroma.Notification,
- left_join: c in assoc(q, :activity),
+ left_join: c in "activities",
select: %{id: type(q.id, :integer)},
where: is_nil(c.id)
)