-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from nezhar/increase_user_agent_max_length
Increase max_length of user_agent to 512
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
django_rest_passwordreset/migrations/0004_alter_resetpasswordtoken_user_agent.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.22 on 2023-10-13 12:23 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('django_rest_passwordreset', '0003_allow_blank_and_null_fields'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='resetpasswordtoken', | ||
name='user_agent', | ||
field=models.CharField(blank=True, default='', max_length=512, verbose_name='HTTP User Agent'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters