start process of moving wiki over to field guide

This commit is contained in:
Michael Q Larson
2015-04-08 17:18:51 -07:00
parent 73b536de95
commit 7da6f69cd8
13 changed files with 153 additions and 154 deletions

15
models/FieldGuide.js Normal file
View File

@@ -0,0 +1,15 @@
var mongoose = require('mongoose');
var secrets = require('../config/secrets');
var fieldGuideSchema = new mongoose.Schema({
name: {
type: String,
unique: false
},
description: {
type: Array,
unique: false
}
});
module.exports = mongoose.model('FieldGuide', fieldGuideSchema);