1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-24 13:48:49 +08:00
Drasko DRASKOVIC 7d5b901dc9 Initial commit
2015-07-06 22:32:02 +02:00

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);