mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-04-03 09:28:14 +02:00
delete old stats sooner
This commit is contained in:
parent
6cf6a007d9
commit
f7b22bb310
@ -33,13 +33,13 @@ export class ClientStatisticsService {
|
||||
}
|
||||
|
||||
public async deleteOldStatistics() {
|
||||
const eightDays = new Date(Date.now() - 8 * 24 * 60 * 60 * 1000);
|
||||
const oneDayAgo = new Date(Date.now() - 24 * 60 * 60 * 1000);
|
||||
|
||||
return await this.clientStatisticsRepository
|
||||
.createQueryBuilder()
|
||||
.delete()
|
||||
.from(ClientStatisticsEntity)
|
||||
.where('time < :time', { time: eightDays.getTime() })
|
||||
.where('time < :time', { time: oneDayAgo.getTime() })
|
||||
.execute();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user