1234567891011 |
- const mongoose = require('mongoose')
- const measurementSchema = new mongoose.Schema({
- datetime: String,
- characterization: {
- type: String,
- index: true },
- result: [Number]
- })
- module.exports = mongoose.model('Measurement', measurementSchema)
|