Refactor utils and organize routes/schema

This commit is contained in:
Johnathon Slightham
2021-05-19 20:08:04 -04:00
parent ac404a0ac5
commit cafb324ddb
15 changed files with 128 additions and 115 deletions

19
schema/message.model.js Normal file
View File

@@ -0,0 +1,19 @@
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
// Database schema for an email message
let Message = new Schema({
name: {
type: String
},
subject: {
type: String
},
body: {
type: String
}
}, {
collection: 'messages'
});
module.exports = mongoose.model('Message', Message);