1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

This ain't MongoDB, bruh

This commit is contained in:
toast-ts 2023-12-31 18:30:10 +11:00
parent 6a1700bcd2
commit 869b057f50

View File

@ -78,7 +78,7 @@ export class UserLevelsSvc {
cron.schedule('0 11 1 1 *', async()=>{ cron.schedule('0 11 1 1 *', async()=>{
Logger.console('log', 'Cron', 'Running job "resetAllData", this is activated every 1st of January'); Logger.console('log', 'Cron', 'Running job "resetAllData", this is activated every 1st of January');
const performCountBeforeReset = await this.model.count(); const performCountBeforeReset = await this.model.count();
Logger.console('log', 'Cron:resetAllData', `Counted ${performCountBeforeReset.toLocaleString()} documents before reset`); Logger.console('log', 'Cron:resetAllData', `Counted ${performCountBeforeReset.toLocaleString()} members before reset`);
await this.client.dailyMsgs.nukeDays(); await this.client.dailyMsgs.nukeDays();
await this.model.drop().then(async()=>await this.model.sync()); await this.model.drop().then(async()=>await this.model.sync());
@ -87,7 +87,7 @@ export class UserLevelsSvc {
.setColor('#A3FFE3').setTitle('Yearly data reset has begun!') .setColor('#A3FFE3').setTitle('Yearly data reset has begun!')
.setDescription(MessageTool.concatMessage( .setDescription(MessageTool.concatMessage(
'I have gone ahead and reset everyone\'s rank data.', 'I have gone ahead and reset everyone\'s rank data.',
`There was ${Intl.NumberFormat('en-US').format(performCountBeforeReset)} documents in database before reset.` `There was ${Intl.NumberFormat('en-US').format(performCountBeforeReset)} members in database before reset.`
)).setTimestamp() )).setTimestamp()
]}); ]});