Fixed an incorrectly named DatabaseOperations method. It was causing 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
This commit is contained in:
Ian Kelly 2008-09-10 23:03:07 +00:00
parent 33c29736bb
commit 0cd7fbec56
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class BaseDatabaseOperations(object):
"""
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.