@cendo/database-schemas 1.8.5 → 1.8.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/Order.js +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendo/database-schemas",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/schemas/Order.js CHANGED
@@ -131,6 +131,12 @@ const Order = new Schema({
131
131
  default: []
132
132
  },
133
133
 
134
+ tags: {
135
+ type: [String],
136
+ default: [],
137
+ index: true
138
+ },
139
+
134
140
  updated_at: {
135
141
  type: Date,
136
142
  default: Date.now