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