Fix drop index

This commit is contained in:
Aya Morisawa 2018-09-01 19:12:07 +09:00
parent 7860d97a10
commit 52aa64fcb6
No known key found for this signature in database
GPG Key ID: 3E64865D70D579F2
1 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,12 @@ import * as mongo from 'mongodb';
import db from '../db/mongodb';
const Stats = db.get<IStats>('stats');
Stats.dropIndex({ date: -1 } as any); // 後方互換性のため
// 後方互換性のため
Stats.dropIndex({ date: -1 } as any).catch((e: mongo.MongoError) => {
if (e.code !== 27) throw e;
});
Stats.createIndex({ span: -1, date: -1 }, { unique: true });
export default Stats;