mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
In Django 2.1, the preferred way to express a nullable BooleanField changed from NullBooleanField to passing null=True to BooleanField. This updates our codebase to use the preferred API. Tweaked by tabbott to update the linter rules. The migration is a noop for Django accounting only. Part of #11341.