Skip to content

Commit

Permalink
Remove default from refresh token migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Apr 14, 2018
1 parent 42331aa commit 83ec4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauth2_provider/migrations/0006_auto_20171214_2232.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name="refreshtoken",
name="revoked",
field=models.DateTimeField(null=True, default=django.utils.timezone.now),
field=models.DateTimeField(null=True, default=None),
preserve_default=False,
),
migrations.AlterField(
Expand Down

0 comments on commit 83ec4ac

Please sign in to comment.