Skip to content

Instantly share code, notes, and snippets.

@ShawonAshraf
Created August 3, 2019 20:21
Show Gist options
  • Select an option

  • Save ShawonAshraf/d6a0914becbc9751187f67922e60f71e to your computer and use it in GitHub Desktop.

Select an option

Save ShawonAshraf/d6a0914becbc9751187f67922e60f71e to your computer and use it in GitHub Desktop.
Code for mongodb-nodejs-medium article
try {
await db.collection('games').createIndex({
name: 1,
platform: 1
}, {
unique: true
});
} catch (e) {
console.log('Defined Index already exists, skipping ....');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment