Skip to content

Commit

Permalink
Fixed #8331 -- Added style parameter to sqlite backend implementation…
Browse files Browse the repository at this point in the history
… 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
  • Loading branch information
freakboy3742 committed Aug 15, 2008
1 parent 8683468 commit 1691c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/sqlite3/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def sql_for_pending_references(self, model, style, pending_references):
"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 []

Expand Down

0 comments on commit 1691c22

Please sign in to comment.