- Юркин Александр Сергеевич
- Бунос Матвей Витальевич
- Хурс Павел Иванович
- Корниенко Михаил Юрьевич
- Тюленев Алексей Сергеевич
Электронная система записи к врачам
- user_id: int (AI)
- name: string
- surname: string
- phone: string (unique)
- email: string (unique)
- hashed_password: string
- birthdate: datetime
- role: enum (USER, DOCTOR, ADMINISTRATOR)
- specialization_id: int (AI)
- name: string
- description: string
- employee_id: int (AI)
- user: int -> Users
- specialization: int -> Specializations
- graduate: string
- experience: string
- schedule_id: int (AI)
- doctor_id: int -> Employees
- date_start: datetime with timestamp
- date_end: datetime with timestamp
- status: enum (AVAILABLE/UNAVAILABLE)
- appointment_id: int (AI)
- patient_id: int -> Users
- schedule_id: int -> Schedule
- created_at: datetime with timestamp [auto]
- updated_at: datetime with timestamp [auto]
- status: enum (PLANNED, CANCELLED, FINISHED)
- review_id: int (IA)
- appointment_id: int -> Appointments
- grade: int (1, 2, 3, 4, 5)
- comment: string
- created_at: datetime with timestamp [auto]
- updated_at: datetime with timestamp [auto]
- Users(phone; email)
- Employees(user; specialization)
- Schedule(doctor_id, date_start, date_end, status)
- Appointments(patient_id, status)