UNPKG

react-hackathon-board

Version:
17 lines (13 loc) 323 B
import mongoose from 'mongoose'; import Promise from 'bluebird'; mongoose.Promise = Promise; var Schema = mongoose.Schema; var CommentSchema = new Schema({ id: Number, author: String, content: String, hack: String, date: Date }); var Comment = mongoose.model('Comment', CommentSchema); export default Comment;