commit
						70ac668474
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue