@pintahub/database-schemas 2.1.4 → 2.1.5

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.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -203,6 +203,11 @@ const Product = new Schema({
203
203
  trim: true,
204
204
  },
205
205
 
206
+ is_featured: {
207
+ type: Boolean,
208
+ default: false,
209
+ },
210
+
206
211
  updated_at: {
207
212
  type: Date,
208
213
  default: Date.now