Files
Libr/app/models/user.rb
T
2013-01-07 17:22:30 +08:00

6 lines
144 B
Ruby

class User < ActiveRecord::Base
attr_accessible :email, :name, :books
has_many :user_to_books
has_many :books, through: :user_to_books
end