Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
UserLazy authored Dec 20, 2021
1 parent 5e85e3b commit 3e29f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SkyzuRobot/modules/sql/userinfo_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __repr__(self):

class UserBio(BASE):
__tablename__ = "userbio"
user_id = ColumnBig(Integer, primary_key=True)
user_id = Column(BigInteger, primary_key=True)
bio = Column(UnicodeText)

def __init__(self, user_id, bio):
Expand Down

0 comments on commit 3e29f25

Please sign in to comment.