reserve.js 547 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
const mongoose = require('mongoose');

const { Schema } = mongoose;
Kim, Subin's avatar
ㅁㅁ    
Kim, Subin committed
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
const reserveSchema = new Schema({
    date: {
        type: String,
    },
    time: {
        type: String,
    },
    room:{
        type: String,
    },
    name: { //대표자 이름
        type: String,
    },
    id:{
      type: Number,
    },
    reason: {
      type: String,
    },
    member: {
      type: String,
    },
    approve: {
      type: Boolean,
    },
    num: {
      type: Number,
    }
});
Kim, Subin's avatar
Kim, Subin committed
33

Ha YeaJin's avatar
pages    
Ha YeaJin committed
34
module.exports = mongoose.model('Reserve', reserveSchema);