Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Jan 10, 2023
1 parent 39b67d9 commit 21253df
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions project/petclinic_model/vet.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ class Vet(db.Model):
'Specialty', secondary=specialities_table, lazy='subquery',
backref=db.backref('vets', lazy=True)
)
#visits = db.relationship(
# 'Visit', secondary=visits_table, lazy='subquery',
# backref=db.backref('visits', lazy=True)
#)

def __str__(self):
return self.first_name + " " + self.last_name
Expand Down

0 comments on commit 21253df

Please sign in to comment.