Skip to content

Commit 472fbfb

Browse files
committed
fix changed column names
1 parent 106bfe4 commit 472fbfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Action.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ protected function getPendingSchedules($date = null, $limit = 10, $orderBy = 'as
3030
->pending()
3131
->where(function($query) use($date) {
3232
$query
33-
->whereDate('act_on', $date);
33+
->whereDate('act_date', $date);
3434
})
35-
->orderByRaw('TIME(`act_at`) '. $orderBy)
35+
->orderByRaw('TIME(`act_time`) '. $orderBy)
3636
->take($limit)
3737
->get();
3838
}

0 commit comments

Comments
 (0)