diff options
Diffstat (limited to 'src/models')
-rw-r--r-- | src/models/product/product.model.ts | 4 | ||||
-rw-r--r-- | src/models/product/product.schema.ts | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/models/product/product.model.ts b/src/models/product/product.model.ts new file mode 100644 index 0000000..557b5be --- /dev/null +++ b/src/models/product/product.model.ts @@ -0,0 +1,4 @@ +import { Model, model } from 'mongoose'; +import { ProductSchema, productSchema } from './product.schema'; + +export default model<ProductSchema, Model<ProductSchema>>('Product', productSchema); diff --git a/src/models/product/product.schema.ts b/src/models/product/product.schema.ts new file mode 100644 index 0000000..8f488f3 --- /dev/null +++ b/src/models/product/product.schema.ts @@ -0,0 +1,18 @@ +import { Document, Schema, Types } from 'mongoose'; + +export interface ProductSchema extends Document { + name: string; + description: string; + price: number; + quantity: number; + specs: any; +} + +export const productSchema = new Schema({ + name: String, + description: String, + price: Number, + quantity: Number, + specs: Object +}, { timestamps: true }); + |