Make parts of SchemasRouter use adaptiveCollection.

This commit is contained in:
Nikita Lutsenko
2016-03-01 20:24:36 -08:00
parent abde9484ce
commit 9538a7dab5
2 changed files with 22 additions and 19 deletions

View File

@@ -46,4 +46,8 @@ export default class MongoCollection {
count(query, { skip, limit, sort } = {}) {
return this._mongoCollection.count(query, { skip, limit, sort });
}
drop() {
return this._mongoCollection.drop();
}
}