Skip to content

Commit

Permalink
Merge pull request #25 from czachary9538/master
Browse files Browse the repository at this point in the history
Reverting back to previous state
  • Loading branch information
czachary9538 authored Mar 29, 2024
2 parents d38ecff + 7fe3a93 commit 18374ea
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hackathon/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ 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.Column(db.String, nullable=False)

photo = db.relationship('Photo', backref='signup', lazy=True)


def __init__(self, form_data):
Expand Down

0 comments on commit 18374ea

Please sign in to comment.