Skip to content

Commit

Permalink
Remove nonindexed mappings(?) from Signals Migration SO
Browse files Browse the repository at this point in the history
These fields are captured in schema elsewhere (and validated there as
well).

This effort is part of @elastic/security-team#6268.
  • Loading branch information
rylnd committed Apr 13, 2023
1 parent 83f1fb4 commit d8bc31d
Showing 1 changed file with 0 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,41 +14,9 @@ export const signalsMigrationMappings: SavedObjectsType['mappings'] = {
sourceIndex: {
type: 'keyword',
},
destinationIndex: {
type: 'keyword',
index: false,
},
version: {
type: 'long',
},
error: {
type: 'text',
index: false,
},
taskId: {
type: 'keyword',
index: false,
},
status: {
type: 'keyword',
index: false,
},
created: {
type: 'date',
index: false,
},
createdBy: {
type: 'text',
index: false,
},
updated: {
type: 'date',
index: false,
},
updatedBy: {
type: 'text',
index: false,
},
},
};

Expand Down

0 comments on commit d8bc31d

Please sign in to comment.