I have a PostgreSQL database for my Rails application. In the schema named \'public\' the main Rails models tables are stored etc. I have created a \'discogs\' schema which
Just do
class Foo < ActiveRecord::Base self.table_name = 'myschema.foo' end