How can I change the name of a collection?
I enter the terminal:
use collections
I have a "movie" collection and I wanted to convert it to "movies".
How can I change the name of a collection?
I enter the terminal:
use collections
I have a "movie" collection and I wanted to convert it to "movies".
You can use the renameCollection() method.
db.movie.renameCollection("movies")
Note that there are limitations. This will invalidate any open cursors that are currently returning data and cannot be used to move collections between databases.
Taken from the mongoDB documentation.