summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/features.py
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2017-11-26 22:39:43 -0500
committerSimon Charette <charette.s@gmail.com>2017-12-01 22:12:24 -0500
commit095c1aaa898bed40568009db836aa8434f1b983d (patch)
treefe6002bd40b12bedb73a683120c7f2407024590d /django/db/backends/sqlite3/features.py
parent474bd7a5d4b0b47eeedc03ad471ae9e630e95258 (diff)
Fixed #28849 -- Fixed referenced table and column rename on SQLite.
Thanks Ramiro for the input and Tim for the review.
Diffstat (limited to 'django/db/backends/sqlite3/features.py')
-rw-r--r--django/db/backends/sqlite3/features.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py
index 1c3d2a7378..7563edf1c0 100644
--- a/django/db/backends/sqlite3/features.py
+++ b/django/db/backends/sqlite3/features.py
@@ -22,6 +22,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_transactions = True
atomic_transactions = False
can_rollback_ddl = True
+ supports_atomic_references_rename = False
supports_paramstyle_pyformat = False
supports_sequence_reset = False
can_clone_databases = True