dyno-bot/Dyno-datafactory-develop/models/Command.js
2020-09-12 19:08:48 +01:00

12 lines
299 B
JavaScript

'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 }