@pintahub/database-schemas 1.6.3 → 1.6.4

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.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -174,11 +174,10 @@ const Product = new Schema({
174
174
 
175
175
  Product.index({
176
176
  title: 'text',
177
- })
178
-
179
- Product.index({
180
177
  alternative_title: 'text',
178
+ code: 'text',
181
179
  })
182
180
 
181
+
183
182
  module.exports = Product
184
183