-
Notifications
You must be signed in to change notification settings - Fork 0
/
Schema.txt
71 lines (67 loc) · 1.34 KB
/
Schema.txt
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
User Collection
{
"_id": {
"$oid": "5f116232845af98dcd3b8aeb"
},
"id": 1,
"password": "pbkdf2_sha256$180000$WLFax1XZA3PY$L6dvqzF5OoLPdntqwTodMPK4u7QQNHbk0IXQIgKZ0qw=",
"last_login": {
"$date": "2020-07-18T01:27:23.261Z"
},
"is_superuser": true,
"username": "ronit",
"first_name": "",
"last_name": "",
"email": "[email protected]",
"is_staff": true,
"is_active": true,
"date_joined": {
"$date": "2020-07-17T08:32:50.573Z"
}
}
Customer Collection
{
"_id": {
"$oid": "5f116256204d1bc0caaf03d0"
},
"id": 1,
"user_id": 1,
"name": "Ronit",
"email": "[email protected]"
}
Product Collection
{
"_id": {
"$oid": "5f11627f204d1bc0caaf03d2"
},
"id": 1,
"name": "sneh pranav",
"price": "600.00",
"image": "Screenshot_110_O3ECk2L.png"
}
Order Collection
{
"_id": {
"$oid": "5f124faf9f486a3d05374783"
},
"id": 8,
"customer_id": 1,
"date_ordered": {
"$date": "2020-07-18T01:26:07.518Z"
},
"complete": true,
"transaction_id": "1595035576.114334"
}
OrderItem Collection
{
"_id": {
"$oid": "5f124fb19f486a3d05374784"
},
"id": 9,
"product_id": 1,
"order_id": 8,
"quantity": 1,
"date_added": {
"$date": "2020-07-18T01:26:09.103Z"
}
}