Pavel Evdokimov

Results 4 issues of Pavel Evdokimov

- removed tests with using strings and dates in fields minimum/maximum - changed mechanism of "no required" (from "schema.required = [];" to "delete schema.required;") - delete schema.required if we copy...

In spec 2.0 for strings have 5 build-in formats: password, date, date-time, binary and byte But it is also written that: "However, the format property is an open string-valued property,...

Added support of compound indexes. (#15) Example: ``` javascript //Unique pair user_id and project_name exports.indexes = [ { fields: { user_id:1, project_name: 1 }, options: { unique: true } }...

What do you think about adding feature for updating subscription price? This is how it could be: ```javascript /** * Update subscription price * * @method * @param {number} subscriptionID...