Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function index(Request $request)
from
controls c1 left join controls c2 on c2.next_id=c1.id
left join domains on c1.domain_id=domains.id
where (c1.realisation_date is null) and (c1.plan_date < NOW() + INTERVAL 30 DAY)
where (c1.realisation_date is null) and (c1.plan_date < NOW() + INTERVAL \'30 DAY\')
order by c1.plan_date'
);

Expand Down