Merge pull request #5934 from epixa/3882-4.3-mapper-longints

[savedObjects] change the number mappings to be 'long'
This commit is contained in:
Spencer 2016-01-20 14:19:50 -07:00
commit a0831295b6
3 changed files with 5 additions and 5 deletions

View file

@ -47,12 +47,12 @@ define(function (require) {
// if type:dashboard has no mapping, we push this mapping into ES
SavedDashboard.mapping = {
title: 'string',
hits: 'integer',
hits: 'long',
description: 'string',
panelsJSON: 'string',
optionsJSON: 'string',
uiStateJSON: 'string',
version: 'integer',
version: 'long',
timeRestore: 'boolean',
timeTo: 'string',
timeFrom: 'string',

View file

@ -33,10 +33,10 @@ define(function (require) {
SavedSearch.mapping = {
title: 'string',
description: 'string',
hits: 'integer',
hits: 'long',
columns: 'string',
sort: 'string',
version: 'integer'
version: 'long'
};
SavedSearch.searchSource = true;

View file

@ -48,7 +48,7 @@ define(function (require) {
uiStateJSON: 'string',
description: 'string',
savedSearchId: 'string',
version: 'integer'
version: 'long'
};
SavedVis.searchSource = true;