summaryrefslogtreecommitdiff
path: root/src/services/events/event.schema.js
blob: aff19f125c1d16ee35d781e0fc4f8cb8326ac4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const { Schema } = require('mongoose');

module.exports = new Schema({
  name: {
    type: String,
    required: true,
    unique: true
  },
  schedule: {
    type: String,
    required: true
  },
  status: {
    type: String,
    default: 'notStarted'
  },
  error: String,
  context: {},
  nextRunAt: Date,
  lastRunAt: Date
}, { timestamps: true });