This commit is contained in:
Kekskurse 2021-01-12 18:00:11 +01:00
parent 1f16c0c90e
commit d4258392dd
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class Traffic extends Authenticatable
];
public static function getLastDays(int $days = 7) {
$sql = "SELECT year, month, SUM(traffic) AS `traffic` FROM traffic WHERE tenant = 1 GROUP BY year, month, day ORDER BY date DESC LIMIT ".$days.";";
$sql = "SELECT year, month, SUM(traffic) AS `traffic` FROM traffic WHERE tenant = 1 GROUP BY year, month, day ORDER BY year, month, day DESC LIMIT ".$days.";";
$res = DB::select($sql);
$now = new \DateTime( $days." days ago", new \DateTimeZone('UTC'));