@steedos/service-fields-indexs 2.5.11 → 2.5.12-beta.10
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@steedos.com
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-08-15 23:24:59
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
if (Meteor.isServer) {
|
|
@@ -252,7 +252,7 @@ if (Meteor.isServer) {
|
|
|
252
252
|
try {
|
|
253
253
|
db.instances._ensureIndex({
|
|
254
254
|
"state": 1,
|
|
255
|
-
"
|
|
255
|
+
"category": 1,
|
|
256
256
|
"is_deleted": 1,
|
|
257
257
|
"space": 1
|
|
258
258
|
}, {});
|
|
@@ -265,7 +265,7 @@ if (Meteor.isServer) {
|
|
|
265
265
|
db.instances._ensureIndex({
|
|
266
266
|
submitter: 1,
|
|
267
267
|
submit_date: -1,
|
|
268
|
-
|
|
268
|
+
category: 1,
|
|
269
269
|
state: 1,
|
|
270
270
|
is_deleted: 1,
|
|
271
271
|
space: 1
|
|
@@ -277,7 +277,7 @@ if (Meteor.isServer) {
|
|
|
277
277
|
db.instances._ensureIndex({
|
|
278
278
|
applicant: 1,
|
|
279
279
|
submit_date: -1,
|
|
280
|
-
|
|
280
|
+
category: 1,
|
|
281
281
|
state: 1,
|
|
282
282
|
is_deleted: 1,
|
|
283
283
|
space: 1
|
|
@@ -289,7 +289,7 @@ if (Meteor.isServer) {
|
|
|
289
289
|
db.instances._ensureIndex({
|
|
290
290
|
inbox_users: 1,
|
|
291
291
|
submit_date: -1,
|
|
292
|
-
|
|
292
|
+
category: 1,
|
|
293
293
|
state: 1,
|
|
294
294
|
is_deleted: 1,
|
|
295
295
|
space: 1
|
|
@@ -301,7 +301,7 @@ if (Meteor.isServer) {
|
|
|
301
301
|
db.instances._ensureIndex({
|
|
302
302
|
outbox_users: 1,
|
|
303
303
|
submit_date: -1,
|
|
304
|
-
|
|
304
|
+
category: 1,
|
|
305
305
|
state: 1,
|
|
306
306
|
is_deleted: 1,
|
|
307
307
|
space: 1
|
|
@@ -313,7 +313,7 @@ if (Meteor.isServer) {
|
|
|
313
313
|
db.instances._ensureIndex({
|
|
314
314
|
flow: 1,
|
|
315
315
|
submit_date: -1,
|
|
316
|
-
|
|
316
|
+
category: 1,
|
|
317
317
|
state: 1,
|
|
318
318
|
is_deleted: 1,
|
|
319
319
|
space: 1
|
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.12-beta.10",
|
|
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": "ea690212bfbdc054bbea946e547b876658a0af4e"
|
|
14
14
|
}
|