12345678910111213141516171819202122232425 |
- import mongoose from 'mongoose';
- const mealSchema = new mongoose.Schema({
- userId: String,
- _id: String,
- title: String,
- images: [{
- _id: String,
- name: String,
- url: String,
- isMain: Boolean,
- }],
- recipeLink: String,
- comment: String,
- createdAt: {
- type: Date,
- default: new Date()
- },
- category: String,
- tags: [],
- });
- const Meal = mongoose.model('Meal', mealSchema);
- export default Meal;
|