1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #21905 -- Add info message if DateField or TimeField use a fixed value

This commit is contained in:
Markus Holtermann
2014-02-22 14:29:43 +01:00
parent 1be03aff5c
commit 9d8c73f6a1
3 changed files with 293 additions and 24 deletions

View File

@@ -68,6 +68,8 @@ Fields
* **fields.E140**: FilePathFields must have either ``allow_files`` or ``allow_folders`` set to True.
* **fields.E150**: GenericIPAddressFields cannot accept blank values if null values are not allowed, as blank values are stored as nulls.
* **fields.E160**: The options ``auto_now``, ``auto_now_add``, and ``default`` are mutually exclusive. Only one of these options may be present.
* **fields.W161**: Fixed default value provided.
File Fields
~~~~~~~~~~~