diff options
| author | Anubhav Joshi <anubhav9042@gmail.com> | 2014-06-10 17:34:19 +0530 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-06-17 16:16:02 -0400 |
| commit | 91f1b6dcdc5da47d7794a55e3114820407a5bd62 (patch) | |
| tree | f27e7176a448035362fdc95caa1e32013ef84ba1 /docs/ref | |
| parent | e4708385fde278fbbff5428f756632455c2bcaf5 (diff) | |
Fixed #13711 -- Model check added to ensure that auto-generated column name is within limits of the database.
Thanks russellm for report and Tim Graham for review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index aedaa921db..85cd616253 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -58,6 +58,11 @@ Models * **models.E016**: ``index_together/unique_together`` refers to field ``<field_name>`` which is not local to model ``<model>``. * **models.E017**: Proxy model ``<model>`` contains model fields. +* **models.E018**: Autogenerated column name too long for field ``<field>``. + Maximum length is ``<maximum length>`` for database ``<alias>``. +* **models.E019**: Autogenerated column name too long for M2M field + ``<M2M field>``. Maximum length is ``<maximum length>`` for database + ``<alias>``. Fields ~~~~~~ |
