-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.js
More file actions
53 lines (44 loc) · 1.27 KB
/
db.js
File metadata and controls
53 lines (44 loc) · 1.27 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const ObjectId = Schema.Types.ObjectId;
const userSchema = new Schema ({
email: { type: String, unique: true },
password: String,
firstName: String,
lastName: String
});
const adminSchema = new Schema ({
email: { type: String, unique: true },
password: String,
firstName: String,
lastName: String
});
const courseSchema = new Schema ({
title: String,
description: String,
price: Number,
imageUrl: String,
creatorId: { type: ObjectId, ref: "admin" }
});
const purchaseSchema = new Schema ({
userId: { type: ObjectId, ref: "user" },
courseId: { type: ObjectId, ref: "course" }
});
async function fetchPurchase() {
await mongoose.connect("mongodb+srv://nehagoyal5557:[email protected]/coursera-app")
const purchases = await purchaseModel
.find()
.populate('userId')
.populate('courseId');
console.log(purchases);
}
const userModel = mongoose.model("user", userSchema);
const adminModel = mongoose.model("admin", adminSchema);
const courseModel = mongoose.model("course", courseSchema);
const purchaseModel = mongoose.model("purchase", purchaseSchema);
module.exports = {
userModel,
adminModel,
courseModel,
purchaseModel
};