mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-24 13:48:49 +08:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
// app/models/thing.js
|
|
|
|
var mongoose = require('mongoose');
|
|
var Schema = mongoose.Schema;
|
|
|
|
var ThingSchema = new Schema({
|
|
name: String
|
|
});
|
|
|
|
module.exports = mongoose.model('Thing', ThingSchema);
|