Skip to content

Commit

Permalink
fix: removendo comentario da linha 16
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaylan committed Feb 4, 2024
1 parent 0da1180 commit e3faf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/tables/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class User(Base):
username: Mapped[str] = mapped_column(String(20), unique=True, nullable=False)
email: Mapped[str] = mapped_column(String(320), unique=True, nullable=False)
password_hash: Mapped[str] = mapped_column(Text, unique=False, nullable=False)
#liked = relationship('Liked', backref='user')
liked = relationship('Liked', backref='user')

def __init__(self, name:str, username:str, email:str, password_hash:str):
self.name = name
Expand Down

0 comments on commit e3faf73

Please sign in to comment.