@steedos/service-fields-indexs 2.5.0 → 2.5.2
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: baozhoutao@hotoa.com
|
|
3
3
|
* @Date: 2022-02-28 09:25:03
|
|
4
4
|
* @LastEditors: sunhaolin@hotoa.com
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-06-01 13:52:09
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
if (Meteor.isServer) {
|
|
@@ -261,10 +261,63 @@ if (Meteor.isServer) {
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
// 监控箱-用户
|
|
264
|
+
try {
|
|
265
|
+
db.instances._ensureIndex({
|
|
266
|
+
submitter: 1,
|
|
267
|
+
submit_date: -1,
|
|
268
|
+
form: 1,
|
|
269
|
+
state: 1,
|
|
270
|
+
is_deleted: 1,
|
|
271
|
+
space: 1
|
|
272
|
+
});
|
|
273
|
+
} catch (error) {
|
|
274
|
+
|
|
275
|
+
}
|
|
276
|
+
try {
|
|
277
|
+
db.instances._ensureIndex({
|
|
278
|
+
applicant: 1,
|
|
279
|
+
submit_date: -1,
|
|
280
|
+
form: 1,
|
|
281
|
+
state: 1,
|
|
282
|
+
is_deleted: 1,
|
|
283
|
+
space: 1
|
|
284
|
+
});
|
|
285
|
+
} catch (error) {
|
|
286
|
+
|
|
287
|
+
}
|
|
288
|
+
try {
|
|
289
|
+
db.instances._ensureIndex({
|
|
290
|
+
inbox_users: 1,
|
|
291
|
+
submit_date: -1,
|
|
292
|
+
form: 1,
|
|
293
|
+
state: 1,
|
|
294
|
+
is_deleted: 1,
|
|
295
|
+
space: 1
|
|
296
|
+
});
|
|
297
|
+
} catch (error) {
|
|
298
|
+
|
|
299
|
+
}
|
|
300
|
+
try {
|
|
301
|
+
db.instances._ensureIndex({
|
|
302
|
+
outbox_users: 1,
|
|
303
|
+
submit_date: -1,
|
|
304
|
+
form: 1,
|
|
305
|
+
state: 1,
|
|
306
|
+
is_deleted: 1,
|
|
307
|
+
space: 1
|
|
308
|
+
});
|
|
309
|
+
} catch (error) {
|
|
310
|
+
|
|
311
|
+
}
|
|
264
312
|
try {
|
|
265
313
|
db.instances._ensureIndex({
|
|
266
314
|
flow: 1,
|
|
267
|
-
|
|
315
|
+
submit_date: -1,
|
|
316
|
+
form: 1,
|
|
317
|
+
state: 1,
|
|
318
|
+
is_deleted: 1,
|
|
319
|
+
space: 1
|
|
320
|
+
});
|
|
268
321
|
} catch (error) {
|
|
269
322
|
|
|
270
323
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-fields-indexs",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
|
-
"gitHead": "
|
|
13
|
+
"gitHead": "cdf76ccec2a8c9acb954f15e07a1c7ca0e62077e"
|
|
14
14
|
}
|