Schema
Importing
const { Schema } = new dbLocal({ path: "./databases" });const ModelName = "User"
const BaseModel = {
_id: {
type: Number
},
name: String,
bag: {
items: Array,
id: String
}
}
const User = Schema(ModelName, BaseModel)Schema(model, schema)
Model base
Schema
Parameter
Receive
Example
Last updated