Fix all Django system check warnings in the Review Board codebase.

Review Request #11071 — Created July 6, 2020 and submitted

Information

Review Board
release-4.0.x

Reviewers

Django had a few warnings about code deprecations and recommendations,
which it would show every time the dev server loaded, or when running
other certain management commands.

This change satisfies all warnings (aside from one category, which is
silenced). This just consists of removing null=True from
ManyToManyFields (which doesn't do anything), and fully removing the
legacy settings.TEMPLATE_* settings in favor of settings.TEMPLATES,

The silenced warning is just a suggestion to change a ForeignKey with
unique=True to a OneToOneField. This makes sense, but would require
new work in Django Evolution to understand the equivalency of this
change, and is not worth the time. So instead, we're just telling Django
to ignore this warning.

Ran some standard tests in Review Board. Didn't see any issues, or any
warnings.

Unit tests pass.

Summary ID
Fix all Django system check warnings in the Review Board codebase.
Django had a few warnings about code deprecations and recommendations, which it would show every time the dev server loaded, or when running other certain management commands. This change satisfies all warnings (aside from one category, which is silenced). This just consists of removing `null=True` from `ManyToManyFields` (which doesn't do anything), and fully removing the legacy `settings.TEMPLATE_*` settings in favor of `settings.TEMPLATES`, The silenced warning is just a suggestion to change a `ForeignKey` with `unique=True` to a `OneToOneField`. This makes sense, but would require new work in Django Evolution to understand the equivalency of this change, and is not worth the time. So instead, we're just telling Django to ignore this warning.
1f2ba89cbdd7a6354cbeefee9eccb76b17458f91
david
  1. Ship It!
  2. 
      
chipx86
Review request changed

Status: Closed (submitted)

Change Summary:

Pushed to release-4.0.x (d66815e)
Loading...