| 12345678910111213141516171819 |
- const mongoose = require("mongoose");
- const IngredientSchema = new mongoose.Schema({
- name: {
- type: String,
- minlength: 2,
- required: true
- },
- category: {
- type: String,
- minlength: 3
- },
- unit: {
- type: String,
- required: true
- }
- });
- module.exports = mongoose.model("Ingredient", IngredientSchema);
|