reserve.js 703 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const mongoose = require('mongoose');

const { Schema } = mongoose;
const { Types: { ObjectId } } = Schema;
const ReserveSchema = new Schema({
  user: {
    type: ObjectId,
    required: true,
    ref: 'User',
  },
  date: {
    type: String,
  },
  starttime: {
    type: Number,
  },
  usetime: {
    type: Number,
  },
  start: {
    type: String,
  },
  end: {
    type: String,

  },
  room: {
    type: String,

  },
  reason: {
    type: String,

  },
  students: {
    type: Array,

  },
  approve: {
    type: Boolean,
    default: false,
  },
  check: {
    type: Boolean,
    default: false,
  },
  num: {
    type: Number,
  },
});

module.exports = mongoose.model('Reserve', ReserveSchema);