User.js 797 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
import mongoose from "mongoose";

const { String } = mongoose.Schema.Types

const UserSchema = new mongoose.Schema({
    name: {
        type: String,
이재연's avatar
이재연 committed
8
        required: true, // 꼭 필요한 값
Kim, Subin's avatar
Kim, Subin committed
9
    },
이재연's avatar
이재연 committed
10
    id: {
Kim, Subin's avatar
Kim, Subin committed
11
12
13
14
15
16
17
18
19
        type: String,
        required: true,
        unique: true,
    },
    password: {
        type: String,
        required: true,
        select: true,
    },
이재연's avatar
이재연 committed
20
21
22
23
24
25
26
27
28
29
30
    number:{
        type:String,
        required:true,
        select:true,
        unique:true
    },
    tel:{
        type:String,
        required:true,
        unique:true
    },
Kim, Subin's avatar
Kim, Subin committed
31
32
33
34
35
36
37
38
39
40
41
    role: {
        type: String,
        required: true,
        default: 'user',
        enum: ['user', 'admin', 'root']
    }
}, {
    timestamps: true
})

export default mongoose.models.User || mongoose.model('User', UserSchema)