summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-31 10:30:41 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:02 -0500
commitbcf3532ede16407f1a701717deaed835eda3e87b (patch)
treed4b6167d5c47c42fcae8f05dd86b03adb7faa33c /django/db/backends/sqlite3
parentbc3540ce2c7cc59ec39a23ed16b14cc12f485bf3 (diff)
Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.
Diffstat (limited to 'django/db/backends/sqlite3')
-rw-r--r--django/db/backends/sqlite3/base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py
index 0c26882a57..252293d9cc 100644
--- a/django/db/backends/sqlite3/base.py
+++ b/django/db/backends/sqlite3/base.py
@@ -73,7 +73,6 @@ class DatabaseWrapper(BaseDatabaseWrapper):
'BinaryField': 'BLOB',
'BooleanField': 'bool',
'CharField': 'varchar(%(max_length)s)',
- 'CommaSeparatedIntegerField': 'varchar(%(max_length)s)',
'DateField': 'date',
'DateTimeField': 'datetime',
'DecimalField': 'decimal',