caminte icon indicating copy to clipboard operation
caminte copied to clipboard

Possible typo on README

Open tyeon95 opened this issue 8 years ago • 0 comments

var User = schema.define('User', {
    name:       { type: schema.String,  limit: 255 },
    bio:        { type: schema.Text },
    email:      { type: schema.String,  limit: 155, unique: true },
    approved:   { type: schema.Boolean, default: false, index: true }
    joinedAt:   { type: schema.Date,    default: Date.now },
    age:        { type: schema.Number },
    gender:     { type: schema.String,  limit: 10 }
});

There seems to be a missing comma at the end of approved: { type: schema.Boolean, default: false, index: true }

tyeon95 avatar Oct 17 '17 04:10 tyeon95