Skip to content

Commit

Permalink
change extra_data field (#5782)
Browse files Browse the repository at this point in the history
  • Loading branch information
likesclever authored Nov 22, 2023
1 parent 7be2a06 commit 2b70abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seahub/auth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class SocialAuthUser(models.Model):
username = models.CharField(max_length=255, db_index=True)
provider = models.CharField(max_length=32)
uid = models.CharField(max_length=255)
extra_data = models.TextField()
extra_data = models.TextField(null=True)
objects = SocialAuthUserManager()

class Meta:
Expand Down

0 comments on commit 2b70abf

Please sign in to comment.