Commit d985fd7a authored by Andrew Godwin's avatar Andrew Godwin
Browse files

Fix tablespace command

parent ae19315b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -312,7 +312,7 @@ class BaseDatabaseSchemaEditor(object):
        """
        Moves a model's table between tablespaces
        """
        self.execute(self.sql_rename_table % {
        self.execute(self.sql_retablespace_table % {
            "table": self.quote_name(model._meta.db_table),
            "old_tablespace": self.quote_name(old_db_tablespace),
            "new_tablespace": self.quote_name(new_db_tablespace),