Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
removed duplicate column values
Browse files Browse the repository at this point in the history
  • Loading branch information
AronBuzogany committed Mar 8, 2024
1 parent 4e56539 commit ba98766
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions backend/project/models/courses.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ class Course(db.Model):
name: str = Column(String(50), nullable=False)
ufora_id: str = Column(String(50), nullable=True)
teacher: str = Column(String(255), ForeignKey("users.uid"), nullable=False)
course_id: int = Column(Integer, primary_key=True)
name: str = Column(String(50), nullable=False)
ufora_id: str = Column(String(50), nullable=True)
teacher: str = Column(String(255), ForeignKey("users.uid"), nullable=False)

0 comments on commit ba98766

Please sign in to comment.