|
|
@@ -21,6 +21,10 @@ const pageBulkExportJobSchema = new Schema<PageBulkExportJobDocument>({
|
|
|
status: {
|
|
|
type: String, enum: Object.values(PageBulkExportJobStatus), required: true, default: PageBulkExportJobStatus.initializing,
|
|
|
},
|
|
|
+ statusOnPreviousCronExec: {
|
|
|
+ type: String, enum: Object.values(PageBulkExportJobStatus),
|
|
|
+ },
|
|
|
+ restartFlag: { type: Boolean, required: true, default: false },
|
|
|
revisionListHash: { type: String },
|
|
|
}, { timestamps: true });
|
|
|
|