@pintahub/database-schemas 2.2.5 → 2.2.6

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": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -246,6 +246,12 @@ const Product = new Schema({
246
246
  type: Schema.Types.ObjectId,
247
247
  },
248
248
 
249
+ customizable: {
250
+ type: Boolean,
251
+ default: false,
252
+ index: true,
253
+ },
254
+
249
255
  updated_at: {
250
256
  type: Date,
251
257
  default: Date.now