summaryrefslogtreecommitdiff
path: root/src/services/events/event.schema.js
blob: 22507003aec9e99fda83ef3efee07f22a3055658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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'
  },
  context: {},
  nextRunAt: Date,
  lastRunAt: Date
}, { timestamps: true });