Spaces:
Running
Running
| const mongoose = require('mongoose'); | |
| const RefinityTaskSchema = new mongoose.Schema({ | |
| title: { type: String, required: true }, | |
| sourceText: { type: String, required: true }, | |
| createdBy: { type: String }, // name or email | |
| }, { timestamps: true }); | |
| module.exports = mongoose.model('RefinityTask', RefinityTaskSchema); | |