Guest User

Untitled

a guest
Aug 5th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ActiveRecord ignores configuration
  2. require 'rubygems'
  3. require 'active_record'
  4.  
  5. ActiveRecord::Base.establish_connection(
  6. :adapter => 'mysql2',
  7. :database => 'vft',
  8. :user => 'vft',
  9. :password => 'vft_password'
  10. )
  11.  
  12. class Attachment < ActiveRecord::Base
  13. end
  14.  
  15. Attachment.all
Add Comment
Please, Sign In to add comment