From 7c23d0c52e567768c65aba9835c4f803b6368e21 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 28 Nov 2016 17:47:08 +0000 Subject: [PATCH] Silenced a system check we won't always follow. - Legacy-Id: 12401 --- ietf/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ietf/settings.py b/ietf/settings.py index 084a2eb09..235477173 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -737,6 +737,10 @@ LIST_ACCOUNT_DELAY = 60*60*25 # 25 hours ACCOUNT_REQUEST_EMAIL = 'account-request@ietf.org' +SILENCED_SYSTEM_CHECKS = [ + "fields.W342", # Setting unique=True on a ForeignKey has the same effect as using a OneToOneField. +] + # Put the production SECRET_KEY in settings_local.py, and also any other # sensitive or site-specific changes. DO NOT commit settings_local.py to svn.