Skip to content

Instantly share code, notes, and snippets.

@galbarm
Last active January 25, 2022 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galbarm/197870fb3955aa48eea559a61b26ff38 to your computer and use it in GitHub Desktop.
Save galbarm/197870fb3955aa48eea559a61b26ff38 to your computer and use it in GitHub Desktop.
db.name.createIndex(
{
"id": 1
},
{
unique: true,
"partialFilterExpression": {
"name": null
},
}
);
db.name.createIndex(
{
"id": 1,
"name": 1
},
{
unique: true,
"partialFilterExpression": {
"name": {
"$gt": ""
}
},
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment