[scenarioManager] use index:true rather than removal from 8d0d581577

This commit is contained in:
spalger 2016-02-08 15:54:23 -07:00
parent 2486b1d76e
commit 9a4bb32385
2 changed files with 6 additions and 2 deletions

View file

@ -43,6 +43,7 @@ module.exports = {
}, },
'id': { 'id': {
'type': 'integer', 'type': 'integer',
'index': true,
'include_in_all': false 'include_in_all': false
}, },
'clientip': { 'clientip': {
@ -92,7 +93,8 @@ module.exports = {
'type': 'string' 'type': 'string'
}, },
'lastname': { 'lastname': {
'type': 'integer' 'type': 'integer',
'index': true
} }
} }
} }

View file

@ -43,6 +43,7 @@ module.exports = {
}, },
'id': { 'id': {
'type': 'integer', 'type': 'integer',
'index': true,
'include_in_all': false 'include_in_all': false
}, },
'clientip': { 'clientip': {
@ -92,7 +93,8 @@ module.exports = {
'type': 'string' 'type': 'string'
}, },
'lastname': { 'lastname': {
'type': 'integer' 'type': 'integer',
'index': true
} }
} }
} }