@pintahub/database-schemas 2.8.1 → 2.8.3

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.8.1",
3
+ "version": "2.8.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Group.js CHANGED
@@ -19,6 +19,11 @@ const Group = new Schema({
19
19
  trim: true,
20
20
  },
21
21
 
22
+ description: {
23
+ type: String,
24
+ trim: true,
25
+ },
26
+
22
27
  label: {
23
28
  type: String,
24
29
  trim: true,
@@ -262,6 +262,11 @@ const Product = new Schema({
262
262
  trim: true,
263
263
  },
264
264
 
265
+ ads_note: {
266
+ type: String,
267
+ trim: true,
268
+ },
269
+
265
270
  updated_at: {
266
271
  type: Date,
267
272
  default: Date.now