50 is not long enough to store our keycloak urls

This commit is contained in:
burnettk 2022-12-22 21:10:43 -05:00
parent 790a2bfc1f
commit 313d4cf03f
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class UserModel(SpiffworkflowBaseDBModel):
db.String(255), nullable=False, unique=True
) # should always be a unique value
service = db.Column(
db.String(50), nullable=False, unique=False
db.String(255), nullable=False, unique=False
) # not 'openid' -- google, aws
service_id = db.Column(db.String(255), nullable=False, unique=False)
display_name = db.Column(db.String(255))