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

8 lines
161 B
Ruby

class Book < ActiveRecord::Base
attr_accessible :author, :image, :isbn, :name, :users
has_many :user_to_books
has_many :users, through: :user_to_books
end