-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow nullable/blank fields, fix header values and add docu about tho…
…se values
- Loading branch information
1 parent
96e2341
commit 9c64ea6
Showing
5 changed files
with
77 additions
and
22 deletions.
There are no files selected for viewing
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
25 changes: 25 additions & 0 deletions
25
django_rest_passwordreset/migrations/0003_allow_blank_and_null_fields.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,25 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.20 on 2019-08-02 12:39 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('django_rest_passwordreset', '0002_pk_migration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='resetpasswordtoken', | ||
name='ip_address', | ||
field=models.GenericIPAddressField(blank=True, default='', null=True, verbose_name='The IP address of this session'), | ||
), | ||
migrations.AlterField( | ||
model_name='resetpasswordtoken', | ||
name='user_agent', | ||
field=models.CharField(blank=True, default='', max_length=256, 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
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
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