diff --git a/django/db/backends/postgresql/operations.py b/django/db/backends/postgresql/operations.py
index f517436..1f5fb6e 100644
a
|
b
|
class DatabaseOperations(BaseDatabaseOperations):
|
133 | 133 | style.SQL_TABLE(qn(f.m2m_db_table())))) |
134 | 134 | return output |
135 | 135 | |
| 136 | def tablespace_sql(self, tablespace, inline=False): |
| 137 | return "%sTABLESPACE %s" % ((inline and "USING INDEX " or ""), |
| 138 | self.quote_name(tablespace)) |
| 139 | |
136 | 140 | def savepoint_create_sql(self, sid): |
137 | 141 | return "SAVEPOINT %s" % sid |
138 | 142 | |