Get rid of deprecated models.NullBooleanField usage.
Review Request #12120 — Created March 8, 2022 and submitted — Latest diff uploaded
The
NullBooleanField
has been removed, in favor of just using
BooleanField(null=True)
. We had one place that was using this that
needed to be updated.
Ran devserver and saw no more warning about this.