diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-15 07:35:47 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-15 07:35:47 +0000 |
| commit | 1691c22821edf906da95e6c4d261b5a05c5c181d (patch) | |
| tree | 5d3a1f97751770964acc83bbb5cb2f909d39bb41 /django/db/backends/sqlite3 | |
| parent | 8683468007966d79f8839b485541eb3f090ac1c4 (diff) | |
Fixed #8331 -- Added style parameter to sqlite backend implementation of sql_remove_table_constraints, missed in recent db backend refactor. Thanks to d00gs for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/sqlite3')
| -rw-r--r-- | django/db/backends/sqlite3/creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/creation.py b/django/db/backends/sqlite3/creation.py index 6ad6154d36..89178f5dab 100644 --- a/django/db/backends/sqlite3/creation.py +++ b/django/db/backends/sqlite3/creation.py @@ -36,7 +36,7 @@ class DatabaseCreation(BaseDatabaseCreation): "SQLite3 doesn't support constraints" return [] - def sql_remove_table_constraints(self, model, references_to_delete): + def sql_remove_table_constraints(self, model, references_to_delete, style): "SQLite3 doesn't support constraints" return [] |
