1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-26 13:48:53 +08:00

11 lines
211 B
JavaScript
Raw Normal View History

2015-07-06 22:32:02 +02:00
// app/models/thing.js
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var ThingSchema = new Schema({
name: String
});
module.exports = mongoose.model('Thing', ThingSchema);