homepage/src/models/Recipe.ts

42 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-06-19 00:32:51 +02:00
import mongoose from 'mongoose';
const RecipeSchema = new mongoose.Schema(
{
short_name: {type: String, required: true},
name : {type: String, required: true,},
category : {type: String, required: true,},
icon: {type: String, required: true},
dateCreated: {type: Date, default: Date.now},
dateModified: {type: Date, default: Date.now},
images: [ {
mediapath: {type: String, required: true},
alt: String,
caption: String,
}],
description: {type: String, required: true},
tags : [String],
season : [Number],
baking: { temperature: String,
length: String,
mode: String,
2023-06-19 00:32:51 +02:00
},
preparation : String,
fermentation: {bulk: String,
final: String,
},
portions : String,
total_time : String,
ingredients : [ { name: {type: String, default: ""},
list: [{name: {type: String, default: ""},
unit: String,
amount: String,
2023-06-19 00:32:51 +02:00
}]
}],
instructions : [{name: {type: String, default: ""},
steps: [String]}],
addendum : String,
},
2023-06-19 00:32:51 +02:00
);
export const Recipe = mongoose.model("Recipe", RecipeSchema);