1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #31277 -- Relaxed system check of m2m intermediary tables for db_table collision when database routers are installed.

Turned the error into a warning when database routers are installed.
This commit is contained in:
Xavier Francisco
2020-02-13 11:46:15 +00:00
committed by Mariusz Felisiak
parent 98f23a8af0
commit 8690878507
4 changed files with 100 additions and 3 deletions

View File

@@ -261,6 +261,8 @@ Related fields
effect as using a ``OneToOneField``.
* **fields.W343**: ``limit_choices_to`` has no effect on ``ManyToManyField``
with a ``through`` model.
* **fields.W344**: The field's intermediary table ``<table name>`` clashes with
the table name of ``<model>``/``<model>.<field name>``.
Models
------