From 31d318d19c90ed1dcc441b6b87a1f82dc2fc2d28 Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Sun, 26 Nov 2017 22:39:43 -0500 Subject: [2.0.x] Fixed #28849 -- Fixed referenced table and column rename on SQLite. Thanks Ramiro for the input and Tim for the review. Backport of 095c1aaa898bed40568009db836aa8434f1b983d from master --- django/db/backends/sqlite3/features.py | 1 + 1 file changed, 1 insertion(+) (limited to 'django/db/backends/sqlite3/features.py') diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py index fcebec063e..82c1a34d89 100644 --- a/django/db/backends/sqlite3/features.py +++ b/django/db/backends/sqlite3/features.py @@ -24,6 +24,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 -- cgit v1.3