Skip to content

Commit

Permalink
Increase length of CustosAuthnzToken.external_user_id
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Oct 10, 2023
1 parent fba2605 commit af7d63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9534,7 +9534,7 @@ class CustosAuthnzToken(Base, RepresentById):

id = Column(Integer, primary_key=True)
user_id = Column(Integer, ForeignKey("galaxy_user.id"))
external_user_id = Column(String(64))
external_user_id = Column(String(255))
provider = Column(String(255))
access_token = Column(Text)
id_token = Column(Text)
Expand Down

0 comments on commit af7d63b

Please sign in to comment.