Skip to content

Commit adb949d

Browse files
committed
fix field name
1 parent 3ce4212 commit adb949d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/algora/bounties/jobs/notify_claim.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule Algora.Bounties.Jobs.NotifyClaim do
2121
claims =
2222
from(c in Claim,
2323
where: c.group_id == ^claim_group_id,
24-
order_by: [asc: c.created_at]
24+
order_by: [asc: c.inserted_at]
2525
)
2626
|> Repo.all()
2727
|> Repo.preload([:user, source: [repository: [:user]], target: [repository: [:user]]]),

0 commit comments

Comments
 (0)