Spaces:
Running
Running
| const mongoose = require('mongoose'); | |
| const MessageSchema = new mongoose.Schema({ | |
| userEmail: { type: String }, | |
| userName: { type: String }, | |
| content: { type: String, required: true }, | |
| read: { type: Boolean, default: false }, | |
| }, { timestamps: true }); | |
| module.exports = mongoose.model('Message', MessageSchema); | |