-
Notifications
You must be signed in to change notification settings - Fork 0
/
steps.txt
81 lines (72 loc) · 1.71 KB
/
steps.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
72
73
74
75
76
77
78
79
80
81
models
A-
===============================================
--------------admin is a super user------------
===============================================
==========================
django user model
--------------------------
- id
- f-name
- l-name
- email
- password
- is_active
- is_staff
- is_superuser
- last_login
- use name
==========================
custom base user model (django user)
patient model
--------------------------
- dob
- age
- img
- mobile
- address
- city
- gender
===============================================
--------------------doctor---------------------
===============================================
- degree(selection)
- speciality(fk)
- bio
===============================================
--------------------speciality-----------------
===============================================
- name
===============================================
--------------------schedule-------------------
===============================================
- doctor(fk)
- day
- start time
- end time
- is_active
a|1|saturday|10:00|12:00|True
b|1|sunday|10:00|12:00|True
c|1|monday|10:00|12:00|True
===============================================
--------------------appointment----------------
===============================================
- schedule(fk)
- patient(fk)
- created_at
- accepted
5|b|5|2021-10-10 10:00|false
===============================================
--------------------rating---------------------
===============================================
========================================================
1- update profile
2- view profile
3- view all doctors
4- delete profile
5- login
6- logout
7- register
========================================================
1- crud schedule
2- crud appointments