tags:

views:

47

answers:

1

I'm doing development on MongoDB. For totally non-evil purposes, I sometimes want to blow away everything in a database—that is, to delete every single collection, and whatever else might be lying around, and start from scratch. Is there a single line of code that will let me do this? Bonus points for giving both a MongoDB console method and a MongoDB Ruby driver method.

+4  A: 
use [database];
db.dropDatabase();

Ruby code should be pretty similar.

Josh K