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
|
import { Document, Schema } from 'mongoose';
import { User } from 'which-types';
export interface UserSchema extends Document, Omit<User, '_id'> {
password: string;
}
export const userSchema = new Schema({
username: {
type: String,
unique: true,
required: true,
lowercase: true
},
password: {
type: String,
required: true
},
email: String,
verified: {
type: Boolean,
default: false
},
avatarUrl: {
type: String,
required: false
},
age: {
type: Number,
required: false
}
}, { timestamps: true });
|