vote.js 249 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 const { Model, Schema } = require('@bakjs/mongo') class Vote extends Model { static get $schema () { return { candidate: { type: Schema.Types.ObjectId, ref: 'User'}, qualification: Object } } } module.exports = Vote.$model