flame/utils/clearWeatherData.js
2021-11-15 00:58:47 +01:00

20 lines
384 B
JavaScript

const { Op } = require('sequelize');
const Weather = require('../models/Weather');
const clearWeatherData = async () => {
const weather = await Weather.findOne({
order: [['createdAt', 'DESC']],
});
if (weather) {
await Weather.destroy({
where: {
id: {
[Op.lt]: weather.id,
},
},
});
}
};
module.exports = clearWeatherData;