Ecco un esempio che eseguirà un'operazione di ridenominazione utilizzando Mongoose.
const mongoose = require('mongoose');
mongoose.Promise = Promise;
mongoose.connect('mongodb://localhost/test').then(() => {
console.log('connected');
// Access the underlying database object provided by the MongoDB driver.
let db = mongoose.connection.db;
// Rename the `test` collection to `foobar`
return db.collection('test').rename('foobar');
}).then(() => {
console.log('rename successful');
}).catch(e => {
console.log('rename failed:', e.message);
}).then(() => {
console.log('disconnecting');
mongoose.disconnect();
});
Come puoi vedere, il driver MongoDB espone renameCollection()
metodo come rename()
, che è documentato qui:http://mongodb .github.io/node-mongodb-native/2.2/api/Collection.html#rename