Also increase refresh_token

This commit is contained in:
shamoon 2024-10-14 07:31:21 -07:00
parent 6938022fa8
commit 286bf65c3a
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class Migration(migrations.Migration):
field=models.CharField(
blank=True,
help_text="The refresh token to use for token authentication e.g. with oauth2.",
max_length=2048,
max_length=3072,
null=True,
verbose_name="refresh token",
),

View File

@ -64,7 +64,7 @@ class MailAccount(document_models.ModelWithOwner):
refresh_token = models.CharField(
_("refresh token"),
max_length=2048,
max_length=3072,
blank=True,
null=True,
help_text=_(