-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.js
More file actions
40 lines (38 loc) · 823 Bytes
/
Copy pathUser.js
File metadata and controls
40 lines (38 loc) · 823 Bytes
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
34
35
36
37
38
39
40
const mongoose = require('mongoose');
const UserSchema = new mongoose.Schema({
username: {
type: String,
required: true,
unique: true
},
email: {
type: String,
required: true,
unique: true
},
password: {
type: String,
required: true
},
plan: {
type: String,
enum: ['basic', 'premium'],
default: 'basic'
},
likedSongs: [{
videoId: String,
title: String,
artist: String,
cover: String,
duration: String
}],
playlists: [{
name: String,
songs: []
}],
createdAt: {
type: Date,
default: Date.now
}
});
module.exports = mongoose.model('User', UserSchema);