﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26154	Deprecate CommaSeparatedIntegerField	Tim Graham	Tobin Brown	"As [https://groups.google.com/d/topic/django-developers/wfp9qNpNpaQ/discussion proposed on django-developers], `CommaSeparatedIntegerField` could be replaced with `CharField(validators=[validate_comma_separated_integer_list])`.

The only database storage difference is on Oracle:
{{{
        'CharField': 'NVARCHAR2(%(max_length)s)',
        'CommaSeparatedIntegerField': 'VARCHAR2(%(max_length)s)',
}}}
There are some upgrade considerations described on the mailing list that'll need to be mentioned for Oracle users.

See [https://docs.djangoproject.com/en/dev/topics/migrations/#considerations-when-removing-model-fields the migration topic guide] for an explanation of how to deprecate the field, as well as the [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/#deprecating-a-feature deprecating a feature guide]."	Cleanup/optimization	closed	Database layer (models, ORM)	dev	Normal	fixed			Accepted	1	0	0	1	0	0
