meal.model.js 428 B

12345678910111213141516171819202122232425
  1. import mongoose from 'mongoose';
  2. const mealSchema = new mongoose.Schema({
  3. userId: String,
  4. _id: String,
  5. title: String,
  6. images: [{
  7. _id: String,
  8. name: String,
  9. url: String,
  10. isMain: Boolean,
  11. }],
  12. recipeLink: String,
  13. comment: String,
  14. createdAt: {
  15. type: Date,
  16. default: new Date()
  17. },
  18. category: String,
  19. tags: [],
  20. });
  21. const Meal = mongoose.model('Meal', mealSchema);
  22. export default Meal;