Guest User

Untitled

a guest
Apr 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Test::Unit::TestCase
  2. def create_user_company_view
  3. ActiveRecord::Base.connection.create_view :v_user_company do |v|
  4. v.base_model :user
  5. v.select :include => :company
  6. end
  7. end
  8. end
Add Comment
Please, Sign In to add comment