homepage/src/models/Recipe.ts

41 lines
1.2 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: {type: String, default: ""},
length: {type: String, default: ""},
mode: {type: String, default: ""},
},
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: Number,
}]
}],
instructions : [{name: {type: String, default: ""},
steps: [String]}],
}
);
export const Recipe = mongoose.model("Recipe", RecipeSchema);