diff options
author | Magnus Hagander | 2021-12-12 14:08:40 +0000 |
---|---|---|
committer | Magnus Hagander | 2021-12-12 14:13:10 +0000 |
commit | 1537d0e89d2c6ac57a047444a29eace8eb2a9bb7 (patch) | |
tree | 65bb981bc37a6ece059759f27226da134592cfe8 /pgcommitfest/commitfest/migrations/0001_initial.py | |
parent | 5cfc7d20e0e38174a04e345600efcb377f9239cc (diff) |
Update for django 3.2 compatibility
Diffstat (limited to 'pgcommitfest/commitfest/migrations/0001_initial.py')
-rw-r--r-- | pgcommitfest/commitfest/migrations/0001_initial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/migrations/0001_initial.py b/pgcommitfest/commitfest/migrations/0001_initial.py index a0a3db0..a58a5e1 100644 --- a/pgcommitfest/commitfest/migrations/0001_initial.py +++ b/pgcommitfest/commitfest/migrations/0001_initial.py @@ -81,7 +81,7 @@ class Migration(migrations.Migration): ('filename', models.CharField(max_length=1000, blank=True)), ('date', models.DateTimeField()), ('author', models.CharField(max_length=500)), - ('ispatch', models.NullBooleanField()), + ('ispatch', models.BooleanField(null=True)), ('mailthread', models.ForeignKey(to='commitfest.MailThread', on_delete=models.CASCADE)), ], options={ |