add Note field in recipe

This commit is contained in:
2023-07-21 00:18:37 +02:00
parent cc78ce4075
commit 60d46cba87
6 changed files with 60 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ const RecipeSchema = new mongoose.Schema(
caption: String,
}],
description: {type: String, required: true},
note: {type: String},
tags : [String],
season : [Number],
baking: { temperature: {type:String, default: ""},