Closed nathanmrtns closed 8 years ago
Hi, what is the right schema atribute to sabe this in MongoDB ?
I'm trying to use with this one
var projectSchema = mongoose.Schema({
name: { type: String, required: true }, room: { type: mongoose.Schema.Types.ObjectId, ref: 'Room' }, members: { type: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }] }, managers: { type: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }] }, image: { data: Buffer }
});
But I can get it to work with "data:buffer"
Hi, what is the right schema atribute to sabe this in MongoDB ?
I'm trying to use with this one
var projectSchema = mongoose.Schema({
});
But I can get it to work with "data:buffer"