UNPKG

statistic-mongoose

Version:

Override Feathers service adapter for the Mongoose ORM

9 lines (7 loc) 287 B
const mongoose = require('mongoose'); const Schema = mongoose.Schema; const StatisticsSchema = new Schema({ number: { type: Number, unique: true }, createdOn: { type: Date, unique: true, 'default': Date.now } }); module.exports = mongoose.model('Statistics', StatisticsSchema);