File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ async function createIndex () {
71
71
createdAt : { type : 'date' } ,
72
72
createdBy : { type : 'keyword' } ,
73
73
updatedAt : { type : 'date' } ,
74
- updatedBy : { type : 'keyword' }
74
+ updatedBy : { type : 'keyword' } ,
75
+ deletedAt : { type : 'date' }
75
76
}
76
77
} ,
77
78
createdAt : { type : 'date' } ,
Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ processRequestInterview.schema = {
79
79
createdAt : Joi . date ( ) . required ( ) ,
80
80
createdBy : Joi . string ( ) . uuid ( ) . required ( ) ,
81
81
updatedAt : Joi . date ( ) . allow ( null ) ,
82
- updatedBy : Joi . string ( ) . uuid ( ) . allow ( null )
82
+ updatedBy : Joi . string ( ) . uuid ( ) . allow ( null ) ,
83
+ deletedAt : Joi . date ( ) . allow ( null )
83
84
} ) . required ( )
84
85
} ) . required ( ) ,
85
86
transactionId : Joi . string ( ) . required ( )
You can’t perform that action at this time.
0 commit comments