Skip to content

Instantly share code, notes, and snippets.

@danared
Created October 27, 2015 13:46
Show Gist options
  • Save danared/31db40806ddd77f02f0f to your computer and use it in GitHub Desktop.
Save danared/31db40806ddd77f02f0f to your computer and use it in GitHub Desktop.
db.runCommand({
collMod: "contacts",
validator:
{$or: [{version: {"$exists": false}},
{version: 1,
$and: [{Name: {"$exists": true}}]
},
{version: 2,
$and: [{Name: {"$exists": true, "$type": 2}}]
}
]
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment