diff options
| author | Tim Graham <timograham@gmail.com> | 2016-12-31 10:30:41 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-17 20:52:02 -0500 |
| commit | bcf3532ede16407f1a701717deaed835eda3e87b (patch) | |
| tree | d4b6167d5c47c42fcae8f05dd86b03adb7faa33c /docs/ref/models | |
| parent | bc3540ce2c7cc59ec39a23ed16b14cc12f485bf3 (diff) | |
Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/fields.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 1d03bf99f2..5e6e2e1c0e 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -480,21 +480,6 @@ The default form widget for this field is a :class:`~django.forms.TextInput`. of. Refer to the :ref:`MySQL database notes <mysql-collation>` for details. -``CommaSeparatedIntegerField`` ------------------------------- - -.. class:: CommaSeparatedIntegerField(max_length=None, **options) - -.. deprecated:: 1.9 - - This field is deprecated in favor of :class:`~django.db.models.CharField` - with ``validators=[``\ :func:`validate_comma_separated_integer_list - <django.core.validators.validate_comma_separated_integer_list>`\ ``]``. - -A field of integers separated by commas. As in :class:`CharField`, the -:attr:`~CharField.max_length` argument is required and the note about database -portability mentioned there should be heeded. - ``DateField`` ------------- |
