(self, coll_name)
| 438 | collection.create_index(_keys, unique=unique) |
| 439 | |
| 440 | def get_index(self, coll_name): |
| 441 | return self.get_collection(coll_name).index_information() |
| 442 | |
| 443 | def drop_collection(self, coll_name): |
| 444 | return self.db.drop_collection(coll_name) |