Skip to content

Instantly share code, notes, and snippets.

@francois-blanchard
Last active January 14, 2016 09:00
Show Gist options
  • Select an option

  • Save francois-blanchard/200528d79bc81520860e to your computer and use it in GitHub Desktop.

Select an option

Save francois-blanchard/200528d79bc81520860e to your computer and use it in GitHub Desktop.
Drop mongoDB table (collection)

DROP mongoDB collection

$ mongo
> show dbs
> use lolrate_development
> show collections
> db.games.drop()
> db.participants.drop()
> db.banned_champions.drop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment