Initial commit
This commit is contained in:
40
src/models/Recipe.ts
Normal file
40
src/models/Recipe.ts
Normal file
@ -0,0 +1,40 @@
|
||||
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);
|
Reference in New Issue
Block a user