Guest User

Untitled

a guest
Jan 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. require 'active_record'
  2. # Rails で言うところの config/database.yml
  3. ActiveRecord::Base.establish_connection(
  4. adapter: 'mysql2',
  5. host: 'localhost',
  6. username: 'username',
  7. password: 'password',
  8. database: 'database',
  9. # ....
  10. )
  11.  
  12. # 使いたいテーブルのモデル
  13. class User < ActiveRecord::Base
  14. # relation とか
  15. end
  16.  
  17. # ...
Add Comment
Please, Sign In to add comment