Changing Model’s useTable from Controller

I was struck trying to get the controller to change the table of a model for a while. It turns out that $this->Payment->useTable = “payment_archives”; doesn’t work.. Instead I have to use: $this->Payment->setSource(“payment_archives”); It seems that useTable is not referenced to when deciding which table to use. bookmark