In your migration, specify the table names with the schema prefix for the create_table and drop_table calls.
create_table("Company.Employees") do |t|
t.column :name, :string, :limit => 60
end
In the model, override the default table name using set_table_name.
class Employees < ActiveRecord::Base
set_table_name "Company.Employees"
end
On the other hand
, rails, , , database.yml.