Spaces:
Running
Running
File size: 327 Bytes
a7fd28e f5fec46 7700f98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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);
|