diff options
| author | Tim Graham <timograham@gmail.com> | 2018-12-22 15:48:41 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-12-22 16:59:28 -0500 |
| commit | d5af14aa84dc5ec913859e787b269fb8029d63cd (patch) | |
| tree | 53337627ca568848a1eaea440ccd01c6709f29af /django/db | |
| parent | 790d108c97f0cf9caa02c72791f2bf158d308fcd (diff) | |
Fixed #30055 -- Dropped support for SQLite < 3.8.3.
Diffstat (limited to 'django/db')
| -rw-r--r-- | django/db/backends/sqlite3/features.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py index 612ae735be..d76a1275f5 100644 --- a/django/db/backends/sqlite3/features.py +++ b/django/db/backends/sqlite3/features.py @@ -34,7 +34,6 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_cast_with_precision = False time_cast_precision = 3 can_release_savepoints = True - supports_partial_indexes = Database.sqlite_version_info >= (3, 8, 0) # Is "ALTER TABLE ... RENAME COLUMN" supported? can_alter_table_rename_column = Database.sqlite_version_info >= (3, 25, 0) supports_parentheses_in_compound = False |
