Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. POST:
  2. { title: 'My Awesome T-shirt 2',
  3. description: 'All about the details. Of course it's black.',
  4. style: '12345' }
  5. { [MongoError: E11000 duplicate key error index: ecomm_database.products.$style_1 dup key: { : "12345" }]
  6. name: 'MongoError',
  7. err: 'E11000 duplicate key error index: ecomm_database.products.$style_1 dup key: { : "12345" }',
  8.  
  9. var Product = new Schema({
  10. title: { type: String, required: true },
  11. description: { type: String, required: true },
  12. style: { type: String, unique: true },
  13. modified: { type: Date, default: Date.now } });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement