Skip to content

Commit 7ad9aa0

Browse files
committed
add new line
1 parent a923103 commit 7ad9aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/database/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ async def get_by_username(db: Session, username: str) -> User:
100100
return db.query(User).filter(User.username == username).first()
101101

102102

103-
104103
class UserExercise(Base):
105104
"""
106105
Table name user exercise
@@ -112,6 +111,7 @@ class UserExercise(Base):
112111
user_id = Column(Integer, ForeignKey("users.id"))
113112
start_date = Column(DateTime, nullable=False)
114113

114+
115115
class Feature(Base):
116116
__tablename__ = "features"
117117

0 commit comments

Comments
 (0)