diff --git a/src/chart/index.ts b/src/chart/index.ts index 0c8bccb3b..b59ad7602 100644 --- a/src/chart/index.ts +++ b/src/chart/index.ts @@ -66,19 +66,6 @@ export default abstract class Chart { } else { this.collection.createIndex({ span: -1, date: -1 }, { unique: true }); } - - //#region 後方互換性のため - this.collection.find({ span: 'day' }, { fields: { _id: true, date: true } }).then(logs => { - logs.forEach(log => { - this.collection.update({ _id: log._id }, { $set: { date: utc(log.date).hour(0).toDate() } }); - }); - }); - this.collection.find({ span: 'hour' }, { fields: { _id: true, date: true } }).then(logs => { - logs.forEach(log => { - this.collection.update({ _id: log._id }, { $set: { date: utc(log.date).toDate() } }); - }); - }); - //#endregion } @autobind