-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
54 lines (50 loc) · 844 Bytes
/
notes.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
Doctor Table:
-Columns:
doc_id (Primary Key)
fname
lname
email (Unique)
phone (Unique)
password
age
gender
imglink
area
specialization
clinics
degree
fees
========================
Patient Table:
-Columns:
patient_id (Primary Key)
fname
lname
email (Unique)
password
age
gender
phone (Unique)
imglink
area
========================
Appointment Table:
-Columns:
app_id (Primary Key)
doc_id (Foreign Key)
patient_id (Foreign Key)
date
time
status (Pending, Approved, Rejected)
========================
Feedback Table:
-Columns:
feedback_id (Primary Key)
doc_id (Foreign Key)
patient_id (Foreign Key)
app_id (Foreign Key)
feedback
rating
date
==================================
1- the img proplem