@pintahub/database-schemas 3.7.5 → 3.7.7

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": "3.7.5",
3
+ "version": "3.7.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -310,6 +310,7 @@ const Product = new Schema({
310
310
  created_at: {
311
311
  type: Date,
312
312
  default: Date.now,
313
+ index: true,
313
314
  }
314
315
  })
315
316
 
@@ -110,7 +110,6 @@ const ProductRaw = new Schema({
110
110
  created_at: {
111
111
  type: Date,
112
112
  default: Date.now,
113
- index: true,
114
113
  }
115
114
  })
116
115