add Note field in recipe

This commit is contained in:
2023-07-21 00:18:37 +02:00
parent e78f173818
commit 01b2409a8d
6 changed files with 60 additions and 4 deletions
+1
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: ""},