24 lines
847 B
Python

from sqlalchemy import Column, VARCHAR, Date, String
from sqlalchemy.orm import relationship
from app.domain.models.base import BaseModel
class Patient(BaseModel):
__tablename__ = 'patients'
first_name = Column(VARCHAR(200), nullable=False)
last_name = Column(VARCHAR(200), nullable=False)
patronymic = Column(VARCHAR(200))
birthday = Column(Date, nullable=False)
address = Column(String)
email = Column(VARCHAR(350))
phone = Column(VARCHAR(25))
diagnosis = Column(String)
correction = Column(String)
lens_issues = relationship('LensIssue', back_populates='patient')
appointments = relationship('Appointment', back_populates='patient')
mailing = relationship('Recipient', back_populates='patient')
scheduled_appointments = relationship('ScheduledAppointment', back_populates='patient')