@pintahub/database-schemas 1.5.7 → 1.5.9
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 +1 -1
- package/schemas/Product.js +11 -0
package/package.json
CHANGED
package/schemas/Product.js
CHANGED
|
@@ -27,6 +27,11 @@ const Product = new Schema({
|
|
|
27
27
|
trim: true,
|
|
28
28
|
},
|
|
29
29
|
|
|
30
|
+
alternative_title: {
|
|
31
|
+
type: String,
|
|
32
|
+
trim: true,
|
|
33
|
+
},
|
|
34
|
+
|
|
30
35
|
product_type: {
|
|
31
36
|
type: String,
|
|
32
37
|
trim: true,
|
|
@@ -132,6 +137,12 @@ const Product = new Schema({
|
|
|
132
137
|
trello_id: {
|
|
133
138
|
type: String,
|
|
134
139
|
trim: true,
|
|
140
|
+
index: true,
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
user_idea: {
|
|
144
|
+
type: String,
|
|
145
|
+
trim: true,
|
|
135
146
|
},
|
|
136
147
|
|
|
137
148
|
updated_at: {
|