blob: ff6cbe940af776653132df48ffba2656c8c129bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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: String,
password: String,
email: String,
avatarUrl: {
type: String,
required: false
},
age: {
type: Number,
required: false
}
}, { timestamps: true });
|