Skip to content

Commit

Permalink
Fixed an incorrectly named DatabaseOperations method. It was causing …
Browse files Browse the repository at this point in the history
…non-Oracle backends to fail when running syncdb with tablespaces set.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9004 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
nightflyerkilo committed Sep 10, 2008
1 parent 33c2973 commit 0cd7fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/__init__.py
Expand Up @@ -292,7 +292,7 @@ def start_transaction_sql(self):
"""
return "BEGIN;"

def sql_for_tablespace(self, tablespace, inline=False):
def tablespace_sql(self, tablespace, inline=False):
"""
Returns the SQL that will be appended to tables or rows to define
a tablespace. Returns '' if the backend doesn't use tablespaces.
Expand Down

0 comments on commit 0cd7fbe

Please sign in to comment.