summaryrefslogtreecommitdiff
path: root/src/models/product/product.schema.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-14 06:44:05 +0300
committereug-vs <eug-vs@keemail.me>2021-03-14 06:44:05 +0300
commit1b86dcef9fd537db800e0df2c2f3889ffbc69723 (patch)
treef44f2d6a21075ac69d01b8b4a298939146fd9bd3 /src/models/product/product.schema.ts
parentdc00c06719b5192518a67177caafe28f5027c16c (diff)
downloadcommercel-api-1b86dcef9fd537db800e0df2c2f3889ffbc69723.tar.gz
feat: add products service
Diffstat (limited to 'src/models/product/product.schema.ts')
-rw-r--r--src/models/product/product.schema.ts18
1 files changed, 18 insertions, 0 deletions
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 });
+