Skip to content

Instantly share code, notes, and snippets.

@lifo
Created January 17, 2009 20:57
Show Gist options
  • Save lifo/48452 to your computer and use it in GitHub Desktop.
Save lifo/48452 to your computer and use it in GitHub Desktop.
class User < ActiveRecord::Base
# establish_connection :main_database
end
class Book < ActiveRecord::Base
establish_connection :second_database
end
ActiveRecord::Base.with_connection do
Book.do_some_shit!
User.do_more_shit!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment