@cendo/database-schemas 1.9.3 → 1.9.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/Order.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendo/database-schemas",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/schemas/Order.js CHANGED
@@ -151,6 +151,11 @@ const Order = new Schema({
151
151
  type: Boolean,
152
152
  },
153
153
 
154
+ pushed_at: {
155
+ type: Date,
156
+ index: true
157
+ },
158
+
154
159
  updated_at: {
155
160
  type: Date,
156
161
  default: Date.now