@pintahub/database-schemas 1.5.1 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pintahub/database-schemas",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -117,6 +117,12 @@ const Product = new Schema({
117
117
  index: true,
118
118
  },
119
119
 
120
+ is_uploaded: {//temporary filed for uploading product images
121
+ type: Boolean,
122
+ default: false,
123
+ index: true,
124
+ },
125
+
120
126
  updated_at: {
121
127
  type: Date,
122
128
  default: Date.now