Skip to content

Commit 950806c

Browse files
committed
Fix MYSQL unit tests
1 parent cdb55c8 commit 950806c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, OAuthBase):
3434

3535

3636
class UserOAuth(SQLAlchemyBaseUserTableUUID, OAuthBase):
37-
first_name = Column(String, nullable=True)
37+
first_name = Column(String(255), nullable=True)
3838
oauth_accounts: List[OAuthAccount] = relationship("OAuthAccount", lazy="joined")
3939

4040

0 commit comments

Comments
 (0)