User.js 840 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
        type: String,
        required: true,
        unique: true,
    },
    password: {
        type: String,
        required: true,
    },
이재연's avatar
이재연 committed
19
20
21
22
23
24
    number1:{
        type:String,
        required:true,
        unique:true
    },
    number2:{
이재연's avatar
이재연 committed
25
26
27
28
29
30
31
32
33
        type:String,
        required:true,
        unique:true
    },
    tel:{
        type:String,
        required:true,
        unique:true
    },
Kim, Subin's avatar
Kim, Subin committed
34
35
36
37
38
39
40
41
42
43
44
    role: {
        type: String,
        required: true,
        default: 'user',
        enum: ['user', 'admin', 'root']
    }
}, {
    timestamps: true
})

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