File size: 751 Bytes
5935901 | 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 | # app/models/student_comment.py
from datetime import datetime
from sqlalchemy import (
Column,
Integer,
String,
Text,
DateTime,
ForeignKey,
)
from sqlalchemy.orm import relationship
from core.database import Base
class StudentComment(Base):
__tablename__ = "student_comments"
id = Column(Integer, primary_key=True, index=True)
student_id = Column(
Integer,
ForeignKey("students.id"),
nullable=False,
index=True,
)
coach_email = Column(String(255), nullable=False)
comment = Column(Text, nullable=False)
created_at = Column(DateTime, default=datetime.utcnow)
# Relationship
student = relationship("Student", back_populates="comments")
|