Created
April 16, 2010 16:40
-
-
Save konklone/368651 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mongo | |
MongoDB shell version: 1.4.0 | |
url: test | |
connecting to: test | |
type "help" for help | |
> use drumbone | |
switched to db drumbone | |
> db.legislators.update({}, {$unset: {resolutions_sponsored: 1}}, false, true) | |
Invalid modifier specified $unset | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mongo | |
MongoDB shell version: 1.4.0 | |
url: test | |
connecting to: test | |
type "help" for help | |
> use drumbone | |
switched to db drumbone | |
> db.legislators.update({}, {$unset: {resolutions_sponsored: 1}}, false, true) | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment