diff --git a/fastapi-postgres/application/models.py b/fastapi-postgres/application/models.py index 05dd1eb..152fea3 100644 --- a/fastapi-postgres/application/models.py +++ b/fastapi-postgres/application/models.py @@ -11,3 +11,6 @@ class Student(Base): email = Column(String, name="Email", index=True) password = Column(String, name="Hashed Password") stream = Column(String, name="Subject Stream", default="Mathematics") + + def __repr__(self): + return f""