Guest User

Untitled

a guest
Mar 2nd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. require 'rubygems'
  2. require 'active_record'
  3.  
  4. ActiveRecord::Base.establish_connection(
  5. :adapter => 'mysql',
  6. :database => 'database',
  7. :username => 'username',
  8. :password => 'password',
  9. :host => 'localhost'
  10. :encoding => "utf8"
  11. )
  12.  
  13. class User < ActiveRecord::Base
  14. end
Add Comment
Please, Sign In to add comment