Default migration to allowing nulls

This commit is contained in:
Oly 2018-10-11 14:05:17 +01:00 committed by Oliver Marks
parent a4f629885d
commit 090b91b4d6
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='membership',
name='payment_date',
field=models.DateTimeField(default=None),
field=models.DateTimeField(null=True),
),
]