Guest User

Untitled

a guest
Mar 6th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ## fucken_migration.rb
  2.  
  3. module ActiveRecord
  4. class Migration
  5. class << self
  6. def migrate_with_multiple_db
  7. [:bull, :shit].each do |db|
  8. ActiveRecord::Base.disconnect!
  9. ActiveRecord::Base.establish_connection(:adapter => "mysql", :host => "localhost", :username => "myuser", :password => "mypass", :database => "somedatabase")
  10. migrate_without_multiple_db
  11. end
  12. alias_method_chain :migratem, :multiple_db
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment