dyno-bot/Dyno-datafactory-develop/models/Command.js

12 lines
299 B
JavaScript
Raw Permalink Normal View History

2020-09-12 20:08:48 +02:00
'use strict';
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const commandSchema = new Schema({
name: { type: String, index: true, required: true },
_state: { type: Number, index: true },
}, { strict: false });
module.exports = { name: 'Command', schema: commandSchema }