Skip to content

Commit

Permalink
Merge pull request #24 from czachary9538/master
Browse files Browse the repository at this point in the history
small edit to models
  • Loading branch information
czachary9538 authored Mar 29, 2024
2 parents 5e2a154 + d634c32 commit d38ecff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hackathon/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class SignUp(db.Model):
orientation = db.relationship('Orientation', backref='signup', lazy=True)
highest_level = db.Column(db.String, nullable=False)
major = db.relationship('Major', backref='signup', lazy=True)
photo = db.relationship('Photo', backref='signup', lazy=True)
# photo = db.relationship('Photo', backref='signup', lazy=True)
photo = db.Column(db.String, nullable=False)



Expand Down

0 comments on commit d38ecff

Please sign in to comment.